2011-05-27 18:20:44 +02:00
|
|
|
<?php
|
|
|
|
|
2011-05-29 12:20:47 +02:00
|
|
|
/**
|
|
|
|
* @property int $type Type
|
|
|
|
* @property bool $byRef Whether to return by reference
|
|
|
|
* @property string $name Name
|
|
|
|
* @property array $params Parameters
|
|
|
|
* @property array $stmts Statements
|
|
|
|
*/
|
2011-06-05 18:40:04 +02:00
|
|
|
class PHPParser_Node_Stmt_ClassMethod extends PHPParser_Node_Stmt
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2011-08-04 12:03:34 +02:00
|
|
|
public function __construct(array $subNodes, $line = -1, $docComment = null) {
|
|
|
|
parent::__construct($subNodes, $line, $docComment);
|
|
|
|
|
|
|
|
if (($this->type & PHPParser_Node_Stmt_Class::MODIFIER_STATIC)
|
|
|
|
&& ('__construct' == $this->name || '__destruct' == $this->name || '__clone' == $this->name)
|
|
|
|
) {
|
|
|
|
throw new PHPParser_Error(sprintf('"%s" method cannot be static', $this->name));
|
|
|
|
}
|
|
|
|
}
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|