2012-03-10 23:25:26 +01:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Builder;
|
|
|
|
|
|
|
|
use PhpParser;
|
2017-04-24 21:15:11 +02:00
|
|
|
use PhpParser\BuilderHelpers;
|
2014-02-06 14:44:16 +01:00
|
|
|
use PhpParser\Node;
|
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
|
2014-12-19 17:21:46 +01:00
|
|
|
class Method extends FunctionLike
|
2012-03-10 23:25:26 +01:00
|
|
|
{
|
|
|
|
protected $name;
|
2016-07-25 13:33:19 +02:00
|
|
|
protected $flags = 0;
|
2016-12-05 13:30:29 +01:00
|
|
|
|
|
|
|
/** @var array|null */
|
2017-08-13 14:06:08 +02:00
|
|
|
protected $stmts = [];
|
2012-03-10 23:25:26 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a method builder.
|
|
|
|
*
|
|
|
|
* @param string $name Name of the method
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function __construct(string $name) {
|
2012-03-10 23:25:26 +01:00
|
|
|
$this->name = $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the method public.
|
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function makePublic() {
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PUBLIC);
|
2012-03-10 23:25:26 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the method protected.
|
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function makeProtected() {
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PROTECTED);
|
2012-03-10 23:25:26 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the method private.
|
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function makePrivate() {
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PRIVATE);
|
2012-03-10 23:25:26 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the method static.
|
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function makeStatic() {
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_STATIC);
|
2012-03-10 23:25:26 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the method abstract.
|
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this 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
|
|
|
}
|
|
|
|
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, 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-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2012-03-10 23:25:26 +01:00
|
|
|
*/
|
|
|
|
public function makeFinal() {
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_FINAL);
|
2012-03-10 23:25:26 +01:00
|
|
|
|
|
|
|
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-12-19 17:21:46 +01:00
|
|
|
* @return $this 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
|
|
|
}
|
|
|
|
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->stmts[] = BuilderHelpers::normalizeStmt($stmt);
|
2012-03-10 23:25:26 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getNode() : Node {
|
2017-08-13 14:06:08 +02:00
|
|
|
return new Stmt\ClassMethod($this->name, [
|
2016-07-25 13:33:19 +02:00
|
|
|
'flags' => $this->flags,
|
2016-04-09 11:41:38 +02:00
|
|
|
'byRef' => $this->returnByRef,
|
|
|
|
'params' => $this->params,
|
|
|
|
'returnType' => $this->returnType,
|
|
|
|
'stmts' => $this->stmts,
|
2017-08-13 14:06:08 +02:00
|
|
|
], $this->attributes);
|
2012-03-10 23:25:26 +01:00
|
|
|
}
|
2015-03-02 11:33:41 +01:00
|
|
|
}
|