Esempio n. 1
0
File: Trait.php Progetto: 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);
 }
Esempio n. 2
0
File: Class.php Progetto: 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);
 }
Esempio n. 3
0
 /**
  * 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);
 }
Esempio n. 4
0
 /**
  * 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);
 }
Esempio n. 5
0
 /**
  * Constructs a new interface wrapper instance.
  *
  * @param PHP_Depend_Code_Interface $node The wrapped interface object.
  */
 public function __construct(ASTInterface $node)
 {
     parent::__construct($node);
 }