yiisoft / yii2-debug

Debug Extension for Yii 2
http://www.yiiframework.com
BSD 3-Clause "New" or "Revised" License
201 stars 149 forks source link

Fixes 8.1 issue: class_exists with null value will error #474

Closed scrummitch closed 2 years ago

scrummitch commented 2 years ago

If the UserPanel class member variable $this->filterModel is NULL, php 8.1 will complain and throw a deprecation error.

I am adding an is_null() check before the class_exists call to fix this

PHP Deprecated Warning – yii\base\ErrorException
class_exists(): Passing null to parameter #1 ($class) of type string is deprecated
Q A
Is bugfix? ✔️
New feature?
Breaks BC?
Fixed issues #473
bizley commented 2 years ago

Thank you.