Added missing CHILD_NAMES constant from abstract class

This commit is contained in:
dantleech 2018-07-28 07:52:12 +02:00
Родитель 1bf3dbbbc6
Коммит 531d8bd5a2
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -13,6 +13,8 @@ use Microsoft\PhpParser\Node\Statement\NamespaceDefinition;
use Microsoft\PhpParser\Node\Statement\NamespaceUseDeclaration;
abstract class Node implements \JsonSerializable {
const CHILD_NAMES = [];
/** @var array[] Map from node class to array of child keys */
private static $childNames = [];