public function __construct(Node $node, $parameterTypeName, $parameterType, $method)
 {
     parent::__construct($node);
     $this->parameterTypeName = $parameterTypeName;
     $this->parameterType = $parameterType;
     $this->method = $method;
 }
 public function __construct($propertyName, Property $node)
 {
     parent::__construct($node);
     $this->propertyName = $propertyName;
 }
Example #3
0
 public function __construct(ObjectType $objectType, ClassMethod $node)
 {
     parent::__construct($node);
     $this->objectType = $objectType;
 }
Example #4
0
 public function __construct(ObjectType $objectType, $property, Property $node)
 {
     parent::__construct($node);
     $this->objectType = $objectType;
     $this->property = $property;
 }
Example #5
0
 public function __construct(ObjectType $objectType, New_ $node)
 {
     parent::__construct($node);
     $this->objectType = $objectType;
 }