예제 #1
0
파일: Trait.php 프로젝트: n2bh/phpmd
 /**
  * Constructs a new interface wrapper instance.
  *
  * @param PHP_Depend_Code_Trait $node The wrapped interface object.
  */
 public function __construct(ASTTrait $node)
 {
     parent::__construct($node);
 }
예제 #2
0
파일: Class.php 프로젝트: n2bh/phpmd
 /**
  * Constructs a new class wrapper node.
  *
  * @param PHP_Depend_Code_Class $node The wrapped class object.
  */
 public function __construct(ASTClass $node)
 {
     parent::__construct($node);
 }
예제 #3
0
파일: Class.php 프로젝트: Tjorriemorrie/app
 /**
  * Constructs a new class wrapper node.
  *
  * @param PHP_Depend_Code_Class $node The wrapped class object.
  */
 public function __construct(PHP_Depend_Code_Class $node)
 {
     parent::__construct($node);
 }
예제 #4
0
파일: Interface.php 프로젝트: kingsj/core
 /**
  * Constructs a new interface wrapper instance.
  *
  * @param PHP_Depend_Code_Interface $node The wrapped interface object.
  */
 public function __construct(PHP_Depend_Code_Interface $node)
 {
     parent::__construct($node);
 }
예제 #5
0
파일: Interface.php 프로젝트: n2bh/phpmd
 /**
  * Constructs a new interface wrapper instance.
  *
  * @param PHP_Depend_Code_Interface $node The wrapped interface object.
  */
 public function __construct(ASTInterface $node)
 {
     parent::__construct($node);
 }