caffeinated / menus

:pushpin: Menu generator package for the Laravel framework
https://caffeinatedpackages.com
132 stars 59 forks source link

PHP 7.4 Update #113

Closed thekanbo closed 4 years ago

thekanbo commented 4 years ago

Removes incorrect array references that broke in PHP 7.4 as a result of calling an array offset on a null value/property. For reference, in the loadConfig() method in Menus.php:

return $options['default'];

On previous versions of PHP, this would evaluate as null when $options was equal to null. However, in PHP 7.4, referencing a null value as an array is no longer permitted, so errors were being thrown.