php-parser/lib/PhpParser/Builder/Method.php

210 lines
4.9 KiB
PHP
Raw Normal View History

2012-03-10 23:25:26 +01:00
<?php
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;
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();
$this->attributes = array();
2012-03-10 23:25:26 +01:00
}
/**
* Makes the method public.
*
* @return self The builder instance (for fluid interface)
2012-03-10 23:25:26 +01:00
*/
public function makePublic() {
$this->setModifier(Stmt\Class_::MODIFIER_PUBLIC);
2012-03-10 23:25:26 +01:00
return $this;
}
/**
* Makes the method protected.
*
* @return self The builder instance (for fluid interface)
2012-03-10 23:25:26 +01:00
*/
public function makeProtected() {
$this->setModifier(Stmt\Class_::MODIFIER_PROTECTED);
2012-03-10 23:25:26 +01:00
return $this;
}
/**
* Makes the method private.
*
* @return self The builder instance (for fluid interface)
2012-03-10 23:25:26 +01:00
*/
public function makePrivate() {
$this->setModifier(Stmt\Class_::MODIFIER_PRIVATE);
2012-03-10 23:25:26 +01:00
return $this;
}
/**
* Makes the method static.
*
* @return self The builder instance (for fluid interface)
2012-03-10 23:25:26 +01:00
*/
public function makeStatic() {
$this->setModifier(Stmt\Class_::MODIFIER_STATIC);
2012-03-10 23:25:26 +01:00
return $this;
}
/**
* Makes the method abstract.
*
* @return self The builder instance (for fluid interface)
2012-03-10 23:25:26 +01:00
*/
public function makeAbstract() {
if (!empty($this->stmts)) {
throw new \LogicException('Cannot make method with statements abstract');
2012-03-10 23:25:26 +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.
*
* @return self The builder instance (for fluid interface)
2012-03-10 23:25:26 +01:00
*/
public function makeFinal() {
$this->setModifier(Stmt\Class_::MODIFIER_FINAL);
2012-03-10 23:25:26 +01:00
return $this;
}
/**
* Make the method return by reference.
*
* @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.
*
* @param Node\Param|Param $param The parameter to add
2012-03-10 23:25:26 +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);
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
*
* @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.
*
* @param Node|PhpParser\Builder $stmt The statement to add
2012-03-10 23:25:26 +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) {
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
*
* @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;
}
/**
* 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.
*
* @return Stmt\ClassMethod The built method node
2012-03-10 23:25:26 +01:00
*/
public function getNode() {
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,
), $this->attributes);
2012-03-10 23:25:26 +01:00
}
}