tempestphp / highlight

🎨 Fast, extensible, server-side code highlighting for web and terminal

Home Page:https://tempest.stitcher.io/highlight/01-getting-started

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PHP: edge cases

brendt opened this issue · comments

new MyClass()::CONSTANT;
new MyClass()::$staticProperty;
new MyClass()::staticMethod();
new MyClass()->property;
new MyClass()->method();
new MyClass()();