PHPCfg\Op\Expr::__construct PHP Method

__construct() public method

public __construct ( array $attributes = [] )
$attributes array
    public function __construct(array $attributes = [])
    {
        parent::__construct($attributes);
        $this->result = $this->addWriteRef(new Temporary());
    }

Usage Example

Example #1
0
 public function __construct(array $keys, array $values, array $byRef, array $attributes = [])
 {
     parent::__construct($attributes);
     $this->keys = $this->addReadRef($keys);
     $this->values = $this->addReadRef($values);
     $this->byRef = $byRef;
 }
All Usage Examples Of PHPCfg\Op\Expr::__construct