ACC SHELL

Path : /srv/www/vhosts/centrumlb/3rdparty/Nette/DI/
File Upload :
Current File : /srv/www/vhosts/centrumlb/3rdparty/Nette/DI/Statement.php

<?php

/**
 * This file is part of the Nette Framework (http://nette.org)
 * Copyright (c) 2004 David Grudl (http://davidgrudl.com)
 * @package Nette\DI
 */



/**
 * Assignment or calling statement.
 *
 * @author     David Grudl
 * @package Nette\DI
 */
class NDIStatement extends NObject
{
	/** @var string  class|method|$property */
	public $entity;

	/** @var array */
	public $arguments;


	public function __construct($entity, array $arguments = array())
	{
		$this->entity = $entity;
		$this->arguments = $arguments;
	}

}

ACC SHELL 2018