public function __construct($depth, $key, ComparisonResult $result)
 {
     parent::__construct($result->getMatched(), $depth, null, null);
     $this->key = $key;
     $this->result = $result;
 }
 public function __construct($matched, $depth)
 {
     parent::__construct($matched, $depth, null, null);
     // TODO: Change the autogenerated stub
 }
 public function __construct($depth, $right, $key)
 {
     parent::__construct(false, $depth, null, $right);
     // TODO: Change the autogenerated stub
     $this->key = $key;
 }
示例#4
0
 public function __construct($depth)
 {
     parent::__construct(true, $depth, null, null);
     $this->results = [];
 }
 public function __construct($depth, $left, $right)
 {
     parent::__construct(false, $depth, get_class($left), get_class($right));
     // TODO: Change the autogenerated stub
 }
 public function __construct($matched, $depth, $left, $right, $position)
 {
     parent::__construct($matched, $depth, $left, $right);
     $this->position = $position;
 }