2012-03-11 09:02:52 +01:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Builder;
|
|
|
|
|
|
|
|
use PhpParser;
|
|
|
|
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;
|
2014-12-19 17:21:46 +01:00
|
|
|
protected $stmts = array();
|
2012-03-11 09:02:52 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a function builder.
|
|
|
|
*
|
|
|
|
* @param string $name Name of the function
|
|
|
|
*/
|
|
|
|
public function __construct($name) {
|
|
|
|
$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) {
|
|
|
|
$this->stmts[] = $this->normalizeNode($stmt);
|
|
|
|
|
|
|
|
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
|
|
|
*/
|
|
|
|
public function getNode() {
|
2014-02-06 14:44:16 +01:00
|
|
|
return new Stmt\Function_($this->name, array(
|
2012-03-11 09:02:52 +01:00
|
|
|
'byRef' => $this->returnByRef,
|
|
|
|
'params' => $this->params,
|
|
|
|
'stmts' => $this->stmts,
|
2014-12-13 13:44:40 +01:00
|
|
|
), $this->attributes);
|
2012-03-11 09:02:52 +01:00
|
|
|
}
|
|
|
|
}
|