PHPCfg\Op::__construct PHP Method

__construct() public method

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

Usage Example

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