What steps will reproduce the problem?
What is the expected result?
Show Debug Panel
What do you get instead?
Trying to access array offset on value of type null
in vendor/yiisoft/yii2-debug/src/views/default/panels/request/summary.php
line 9: $statusCode = $panel->data['statusCode'];
Additional info
Proposal fix:
$statusCode = isset($panel->data['statusCode']) ? $panel->data['statusCode'] : Null;
| Q |
A |
| Yii version |
2.0.45 |
| PHP version |
8.1.2 |
| Operating system |
Linux (Distro Ubuntu 22.04 LTS) |
What steps will reproduce the problem?
What is the expected result?
Show Debug Panel
What do you get instead?
Trying to access array offset on value of type null
in vendor/yiisoft/yii2-debug/src/views/default/panels/request/summary.php
line 9: $statusCode = $panel->data['statusCode'];
Additional info
Proposal fix:
$statusCode = isset($panel->data['statusCode']) ? $panel->data['statusCode'] : Null;