PHPCfg\Op\Terminal::__construct PHP Method

__construct() public method

public __construct ( array $attributes = [] )
$attributes array
    public function __construct(array $attributes = [])
    {
        parent::__construct($attributes);
    }

Usage Example

コード例 #1
0
ファイル: Const_.php プロジェクト: ircmaxell/php-cfg
 public function __construct($name, Operand $value, Block $valueBlock, array $attributes = [])
 {
     parent::__construct($attributes);
     $this->name = $this->addReadRef($name);
     $this->value = $this->addReadRef($value);
     $this->valueBlock = $valueBlock;
 }
All Usage Examples Of PHPCfg\Op\Terminal::__construct