_From @roblourens on June 9, 2017 18:17_ From new parser, #357 ```php class Foo { public function bar() { new Foo; // No error new self; // No error new static(); // No error new static; // Error } } ``` _Copied from original issue: felixfbecker/php-language-server#387_