2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2012-03-10 23:25:26 +01:00
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Builder;
|
|
|
|
|
|
|
|
use PhpParser;
|
2017-04-24 21:15:11 +02:00
|
|
|
use PhpParser\BuilderHelpers;
|
2022-08-28 21:09:00 +02:00
|
|
|
use PhpParser\Modifiers;
|
2014-02-06 14:44:16 +01:00
|
|
|
use PhpParser\Node;
|
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
|
2022-08-28 22:57:06 +02:00
|
|
|
class Method extends FunctionLike {
|
2023-08-16 21:18:30 +02:00
|
|
|
protected string $name;
|
2023-09-17 18:22:52 +02:00
|
|
|
|
2023-08-16 21:18:30 +02:00
|
|
|
protected int $flags = 0;
|
2016-12-05 07:30:29 -05:00
|
|
|
|
2022-12-14 22:59:53 +01:00
|
|
|
/** @var list<Stmt>|null */
|
2023-08-16 21:18:30 +02:00
|
|
|
protected ?array $stmts = [];
|
2012-03-10 23:25:26 +01:00
|
|
|
|
2022-12-14 22:59:53 +01:00
|
|
|
/** @var list<Node\AttributeGroup> */
|
2023-08-16 21:18:30 +02:00
|
|
|
protected array $attributeGroups = [];
|
2021-06-16 17:47:22 +02:00
|
|
|
|
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() {
|
2022-08-28 21:09:00 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::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() {
|
2022-08-28 21:09:00 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::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() {
|
2022-08-28 21:09:00 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::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() {
|
2022-08-28 21:09:00 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::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
|
|
|
}
|
|
|
|
|
2022-08-28 21:09:00 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::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() {
|
2022-08-28 21:09:00 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Modifiers::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;
|
|
|
|
}
|
|
|
|
|
2021-06-16 17:47:22 +02:00
|
|
|
/**
|
|
|
|
* Adds an attribute group.
|
|
|
|
*
|
|
|
|
* @param Node\Attribute|Node\AttributeGroup $attribute
|
|
|
|
*
|
|
|
|
* @return $this The builder instance (for fluid interface)
|
|
|
|
*/
|
|
|
|
public function addAttribute($attribute) {
|
|
|
|
$this->attributeGroups[] = BuilderHelpers::normalizeAttribute($attribute);
|
|
|
|
|
|
|
|
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
|
|
|
*/
|
2022-08-28 22:57:06 +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 17:41:38 +08:00
|
|
|
'byRef' => $this->returnByRef,
|
|
|
|
'params' => $this->params,
|
|
|
|
'returnType' => $this->returnType,
|
|
|
|
'stmts' => $this->stmts,
|
2021-06-16 17:47:22 +02:00
|
|
|
'attrGroups' => $this->attributeGroups,
|
2017-08-13 14:06:08 +02:00
|
|
|
], $this->attributes);
|
2012-03-10 23:25:26 +01:00
|
|
|
}
|
2015-03-02 10:33:41 +00:00
|
|
|
}
|