Hello,
I would like to ask you whether it would be possible to fix PHP syntax highlighting for version 7.4.
New feature: Instead of
class AnotherFoo {}
class FooClass
{
/**
* @var AnotherFoo
*/
private $anotherFoo;
}
there are now typed properties:
class AnotherFoo {}
class FooClass
{
private AnotherFoo $anotherFoo;
}
Sadly, Sublime text is not able to mark “AnotherFoo” type as class/keyword.
Official PHP reference:
- https://www.php.net/manual/en/migration74.new-features.php
- https://wiki.php.net/rfc/typed_properties_v2
Thanks!
Pavel