PSR-4 and Fix PHP Deprecation Notice
- Fix this PHP Deprecation Notice:
Unparenthesizeda ?: b ? c : d
is deprecated. Use either(a ?: b) ? c : d
ora ?: (b ? c : d)
- Use PSR-4 for autoloading the classes of this package
a ?: b ? c : d
is deprecated. Use either (a ?: b) ? c : d
or a ?: (b ? c : d)