예제 #1
0
파일: Method.php 프로젝트: n2bh/phpmd
 /**
  * Constructs a new method wrapper.
  *
  * @param PHP_Depend_Code_CodeMethod $node The wrapped method object.
  */
 public function __construct(ASTMethod $node)
 {
     parent::__construct($node);
 }
예제 #2
0
파일: Method.php 프로젝트: zerkalica/phpmd
 /**
  * Constructs a new method wrapper.
  *
  * @param PHP_Depend_Code_CodeMethod $node The wrapped method object.
  */
 public function __construct(PHP_Depend_Code_Method $node)
 {
     parent::__construct($node);
 }
예제 #3
0
파일: Function.php 프로젝트: n2bh/phpmd
 /**
  * Constructs a new function wrapper.
  *
  * @param PDepend $node The wrapped function object.
  */
 public function __construct(ASTFunction $node)
 {
     parent::__construct($node);
 }