__construct() public method

public __construct ( array $attributes = [] )
$attributes array
Esempio n. 1
0
 public function __construct(Operand $result, array $attributes = [])
 {
     parent::__construct($attributes);
     $this->result = $this->addWriteRef($result);
 }
Esempio n. 2
0
 public function __construct(array $attributes = array())
 {
     parent::__construct($attributes);
     $this->result = new Variable();
 }
Esempio n. 3
0
 public function __construct(array $attributes = [])
 {
     parent::__construct($attributes);
 }
Esempio n. 4
0
 public function __construct(array $attributes = [])
 {
     parent::__construct($attributes);
     $this->result = $this->addWriteRef(new Temporary());
 }