PHP has been updated with quite a few syntax options in recent years. Let's highlight some of them and see if you're using them.
PHP 7.4 (released in Nov 2019)
Typed Properties
class Post { public string $title;}
The property $title
will have to be only a string
.
Arrow Functions
A second new feature introduced in PHP 7.4 is...