コード例 #1
0
 public function __construct(MethodObject $method, ClassObject $class)
 {
     parent::__construct($method);
     $this->class = $class;
 }
コード例 #2
0
ファイル: TraitMethodEvent.php プロジェクト: theseer/phpdox
 public function __construct(MethodObject $method, TraitObject $trait)
 {
     parent::__construct($method);
     $this->trait = $trait;
 }
コード例 #3
0
 public function __construct(MethodObject $method, InterfaceObject $interface)
 {
     parent::__construct($method);
     $this->interface = $interface;
 }