2012-03-10 23:25:26 +01:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Builder;
|
|
|
|
|
|
|
|
use PhpParser;
|
|
|
|
use PhpParser\Node;
|
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
class Method extends PhpParser\BuilderAbstract
|
2012-03-10 23:25:26 +01:00
|
|
|
{
|
|
|
|
protected $name;
|
|
|
|
|
|
|
|
protected $type;
|
|
|
|
protected $returnByRef;
|
|
|
|
protected $params;
|
|
|
|
protected $stmts;
|
2014-12-13 13:44:40 +01:00
|
|
|
protected $attributes;
|
2012-03-10 23:25:26 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a method builder.
|
|
|
|
*
|
|
|
|
* @param string $name Name of the method
|
|
|
|
*/
|
|
|
|
public function __construct($name) {
|
|
|
|
$this->name = $name;
|
|
|
|
|
|
|
|
$this->type = 0;
|
|
|
|
$this->returnByRef = false;
|
|
|
|
$this->params = array();
|
|
|
|
$this->stmts = array();
|
2014-12-13 13:44:40 +01:00
|
|
|
$this->attributes = array();
|
2012-03-10 23:25:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the method public.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return self The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function makePublic() {
|
2014-02-06 14:44:16 +01:00
|
|
|
$this->setModifier(Stmt\Class_::MODIFIER_PUBLIC);
|
2012-03-10 23:25:26 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the method protected.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return self The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function makeProtected() {
|
2014-02-06 14:44:16 +01:00
|
|
|
$this->setModifier(Stmt\Class_::MODIFIER_PROTECTED);
|
2012-03-10 23:25:26 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the method private.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return self The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function makePrivate() {
|
2014-02-06 14:44:16 +01:00
|
|
|
$this->setModifier(Stmt\Class_::MODIFIER_PRIVATE);
|
2012-03-10 23:25:26 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the method static.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return self The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function makeStatic() {
|
2014-02-06 14:44:16 +01:00
|
|
|
$this->setModifier(Stmt\Class_::MODIFIER_STATIC);
|
2012-03-10 23:25:26 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the method abstract.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return self The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function makeAbstract() {
|
|
|
|
if (!empty($this->stmts)) {
|
2014-02-06 14:44:16 +01:00
|
|
|
throw new \LogicException('Cannot make method with statements abstract');
|
2012-03-10 23:25:26 +01:00
|
|
|
}
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
$this->setModifier(Stmt\Class_::MODIFIER_ABSTRACT);
|
2012-03-10 23:25:26 +01:00
|
|
|
$this->stmts = null; // abstract methods don't have statements
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the method final.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return self The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function makeFinal() {
|
2014-02-06 14:44:16 +01:00
|
|
|
$this->setModifier(Stmt\Class_::MODIFIER_FINAL);
|
2012-03-10 23:25:26 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make the method return by reference.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return self The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function makeReturnByRef() {
|
|
|
|
$this->returnByRef = true;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a parameter.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @param Node\Param|Param $param The parameter to add
|
2012-03-10 23:25:26 +01:00
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return self The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function addParam($param) {
|
|
|
|
$param = $this->normalizeNode($param);
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
if (!$param instanceof Node\Param) {
|
|
|
|
throw new \LogicException(sprintf('Expected parameter node, got "%s"', $param->getType()));
|
2012-03-10 23:25:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->params[] = $param;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds multiple parameters.
|
|
|
|
*
|
|
|
|
* @param array $params The parameters to add
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return self The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function addParams(array $params) {
|
|
|
|
foreach ($params as $param) {
|
|
|
|
$this->addParam($param);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a statement.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @param Node|PhpParser\Builder $stmt The statement to add
|
2012-03-10 23:25:26 +01:00
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return self The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function addStmt($stmt) {
|
|
|
|
if (null === $this->stmts) {
|
2014-02-06 14:44:16 +01:00
|
|
|
throw new \LogicException('Cannot add statements to an abstract method');
|
2012-03-10 23:25:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->stmts[] = $this->normalizeNode($stmt);
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds multiple statements.
|
|
|
|
*
|
|
|
|
* @param array $stmts The statements to add
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return self The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function addStmts(array $stmts) {
|
|
|
|
foreach ($stmts as $stmt) {
|
|
|
|
$this->addStmt($stmt);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2014-12-13 13:44:40 +01:00
|
|
|
/**
|
|
|
|
* Sets doc comment for the method.
|
|
|
|
*
|
|
|
|
* @param PhpParser\Comment\Doc|string $docComment Doc comment to set
|
|
|
|
*
|
|
|
|
* @return self The builder instance (for fluid interface)
|
|
|
|
*/
|
|
|
|
public function setDocComment($docComment) {
|
|
|
|
$this->attributes = array(
|
|
|
|
'comments' => array($this->normalizeDocComment($docComment))
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-03-10 23:25:26 +01:00
|
|
|
/**
|
|
|
|
* Returns the built method node.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return Stmt\ClassMethod The built method node
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function getNode() {
|
2014-02-06 14:44:16 +01:00
|
|
|
return new Stmt\ClassMethod($this->name, array(
|
|
|
|
'type' => $this->type !== 0 ? $this->type : Stmt\Class_::MODIFIER_PUBLIC,
|
2012-03-10 23:25:26 +01:00
|
|
|
'byRef' => $this->returnByRef,
|
|
|
|
'params' => $this->params,
|
|
|
|
'stmts' => $this->stmts,
|
2014-12-13 13:44:40 +01:00
|
|
|
), $this->attributes);
|
2012-03-10 23:25:26 +01:00
|
|
|
}
|
|
|
|
}
|