-
-
Notifications
You must be signed in to change notification settings - Fork 151
Open
Labels
status:ready for adoptionFeel free to implement this issue.Feel free to implement this issue.type:bugBugBug
Description
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) |
Metadata
Metadata
Assignees
Labels
status:ready for adoptionFeel free to implement this issue.Feel free to implement this issue.type:bugBugBug