Example #1
0
File: Trait.php Project: 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);
 }
Example #2
0
File: Class.php Project: 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);
 }
Example #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);
 }
Example #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);
 }
Example #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);
 }