public function __construct(MethodObject $method, ClassObject $class) { parent::__construct($method); $this->class = $class; }
public function __construct(MethodObject $method, TraitObject $trait) { parent::__construct($method); $this->trait = $trait; }
public function __construct(MethodObject $method, InterfaceObject $interface) { parent::__construct($method); $this->interface = $interface; }