예제 #1
0
 public function __construct(MethodObject $method, ClassObject $class)
 {
     parent::__construct($method);
     $this->class = $class;
 }
예제 #2
0
 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;
 }