1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-26 20:04:48 +01:00
PHP-Parser/lib/PhpParser/Builder/Function_.php

51 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2017-08-18 22:57:27 +02:00
<?php declare(strict_types=1);
2012-03-11 09:02:52 +01:00
namespace PhpParser\Builder;
use PhpParser;
use PhpParser\BuilderHelpers;
use PhpParser\Node;
use PhpParser\Node\Stmt;
class Function_ extends FunctionLike
2012-03-11 09:02:52 +01:00
{
protected $name;
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.
*
* @param Node|PhpParser\Builder $stmt The statement to add
2012-03-11 09:02:52 +01:00
*
* @return $this The builder instance (for fluid interface)
2012-03-11 09:02:52 +01:00
*/
public function addStmt($stmt) {
$this->stmts[] = BuilderHelpers::normalizeStmt($stmt);
2012-03-11 09:02:52 +01:00
return $this;
}
/**
* Returns the built function node.
*
* @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 {
return new Stmt\Function_($this->name, [
'byRef' => $this->returnByRef,
'params' => $this->params,
'returnType' => $this->returnType,
'stmts' => $this->stmts,
], $this->attributes);
2012-03-11 09:02:52 +01:00
}
}