2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2012-03-11 09:02:52 +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;
|
2014-02-06 14:44:16 +01:00
|
|
|
use PhpParser\Node;
|
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
|
2014-12-19 17:21:46 +01:00
|
|
|
class Function_ extends FunctionLike
|
2012-03-11 09:02:52 +01:00
|
|
|
{
|
|
|
|
protected $name;
|
2017-08-13 14:06:08 +02:00
|
|
|
protected $stmts = [];
|
2012-03-11 09:02:52 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a function builder.
|
|
|
|
*
|
|
|
|
* @param string $name Name of the function
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function __construct(string $name) {
|
2012-03-11 09:02:52 +01:00
|
|
|
$this->name = $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a statement.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @param Node|PhpParser\Builder $stmt The statement to add
|
2012-03-11 09:02:52 +01:00
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2012-03-11 09:02:52 +01:00
|
|
|
*/
|
|
|
|
public function addStmt($stmt) {
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->stmts[] = BuilderHelpers::normalizeStmt($stmt);
|
2012-03-11 09:02:52 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the built function node.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return Stmt\Function_ The built function node
|
2012-03-11 09:02:52 +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\Function_($this->name, [
|
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-11 09:02:52 +01:00
|
|
|
}
|
2016-04-09 11:41:38 +02:00
|
|
|
}
|