PHPCfg\Op\Stmt::__construct PHP Метод

__construct() публичный Метод

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

Usage Example

Пример #1
0
 public function __construct(Variable $cond, Block $if, Block $else, array $attributes = array())
 {
     parent::__construct($attributes);
     $this->if = $if;
     $this->else = $else;
     $this->cond = $cond;
 }
All Usage Examples Of PHPCfg\Op\Stmt::__construct