verbb / cp-nav

Control Panel Nav is a Craft CMS plugin to help manage your Control Panel navigation.
MIT License
130 stars 11 forks source link

Fix for count() error in PHP 7.2+ #42

Closed deling closed 6 years ago

deling commented 6 years ago

In PHP 7.2+, null can no longer be passed to count(); its argument must implement the Countable interface. The simplest fix is passing a blank array instead of null. count([]) returns the same int 0 that count(null) used to, so no other changes are needed.