__construct() 공개 메소드

public __construct ( array $attributes = [] )
$attributes array
예제 #1
0
파일: Phi.php 프로젝트: ircmaxell/php-cfg
 public function __construct(Operand $result, array $attributes = [])
 {
     parent::__construct($attributes);
     $this->result = $this->addWriteRef($result);
 }
예제 #2
0
파일: Expr.php 프로젝트: nikic/php-cfg
 public function __construct(array $attributes = array())
 {
     parent::__construct($attributes);
     $this->result = new Variable();
 }
예제 #3
0
 public function __construct(array $attributes = [])
 {
     parent::__construct($attributes);
 }
예제 #4
0
파일: Expr.php 프로젝트: ircmaxell/php-cfg
 public function __construct(array $attributes = [])
 {
     parent::__construct($attributes);
     $this->result = $this->addWriteRef(new Temporary());
 }