array(): Statements * 'params' => array(): Parameters * 'uses' => array(): use()s * 'byRef' => false : Whether to return by reference * 'static' => false : Whether the closure is static * @param int $line Line * @param null|string $docComment Nearest doc comment */ public function __construct(array $subNodes = array(), $line = -1, $docComment = null) { parent::__construct( $subNodes + array( 'stmts' => array(), 'params' => array(), 'uses' => array(), 'byRef' => false, 'static' => false, ), $line, $docComment ); } }