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

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

public __construct ( array $attributes = [] )
$attributes array
    public function __construct(array $attributes = [])
    {
        $this->attributes = $attributes;
    }

Usage Example

Пример #1
0
 public function __construct(Operand $result, array $attributes = [])
 {
     parent::__construct($attributes);
     $this->result = $this->addWriteRef($result);
 }
All Usage Examples Of PHPCfg\Op::__construct