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

ClassMethod stmts property can be null (#435)

Conflicts:
	lib/PhpParser/Node/Stmt/ClassMethod.php
This commit is contained in:
Alexander Miertsch 2017-11-01 20:26:21 +01:00 committed by Nikita Popov
parent d418bf3951
commit 72231abe6d

View File

@ -17,7 +17,7 @@ class ClassMethod extends Node\Stmt implements FunctionLike
public $params;
/** @var null|string|Node\Name|Node\NullableType Return type */
public $returnType;
/** @var Node[] Statements */
/** @var Node[]|null Statements */
public $stmts;
/** @deprecated Use $flags instead */