2011-05-27 18:20:44 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2011-10-28 19:06:24 +02:00
|
|
|
* @property bool $byRef Whether returns by reference
|
|
|
|
* @property string $name Name
|
|
|
|
* @property PHPParser_Node_Param[] $params Parameters
|
|
|
|
* @property PHPParser_Node[] $stmts Statements
|
2011-05-27 18:20:44 +02:00
|
|
|
*/
|
2011-10-28 19:14:06 +02:00
|
|
|
class PHPParser_Node_Stmt_Function extends PHPParser_Node_Stmt
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2011-10-28 19:06:24 +02:00
|
|
|
/**
|
|
|
|
* Constructs a function node.
|
|
|
|
*
|
|
|
|
* @param string $name Name
|
|
|
|
* @param array $subNodes Array of the following optional subnodes:
|
|
|
|
* 'byRef' => false : Whether to return by reference
|
|
|
|
* 'params' => array(): Parameters
|
|
|
|
* 'stmts' => array(): Statements
|
|
|
|
* @param int $line Line
|
|
|
|
* @param null|string $docComment Nearest doc comment
|
|
|
|
*/
|
2011-10-28 19:14:06 +02:00
|
|
|
public function __construct($name, array $subNodes = array(), $line = -1, $docComment = null) {
|
2011-10-28 19:06:24 +02:00
|
|
|
parent::__construct(
|
|
|
|
$subNodes + array(
|
|
|
|
'byRef' => false,
|
|
|
|
'params' => array(),
|
|
|
|
'stmts' => array(),
|
|
|
|
),
|
|
|
|
$line, $docComment
|
|
|
|
);
|
|
|
|
$this->name = $name;
|
|
|
|
}
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|