mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-04 10:28:18 +01:00
126efbc056
Make $stmts and $subNodes optional in most places
33 lines
1.2 KiB
PHP
33 lines
1.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @property bool $byRef Whether returns by reference
|
|
* @property string $name Name
|
|
* @property PHPParser_Node_Param[] $params Parameters
|
|
* @property PHPParser_Node[] $stmts Statements
|
|
*/
|
|
class PHPParser_Node_Stmt_Function extends PHPParser_Node_Stmt
|
|
{
|
|
/**
|
|
* 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
|
|
*/
|
|
public function __construct($name, array $subNodes = array(), $line = -1, $docComment = null) {
|
|
parent::__construct(
|
|
$subNodes + array(
|
|
'byRef' => false,
|
|
'params' => array(),
|
|
'stmts' => array(),
|
|
),
|
|
$line, $docComment
|
|
);
|
|
$this->name = $name;
|
|
}
|
|
} |