Commit 510d468
committed
fix:
The creation of a dynamic property without being defined first is deprecated in PHP 8.2. See https://php.watch/versions/8.2/dynamic-properties-deprecated for more info.
`progressBar` property is being dynamically created in `Diagnose::beforeRun` method. To fix the deprecation error, we just need to declare the property in the class first.PHP Deprecated: Creation of dynamic property Valet\Diagnose::$progressBar error.1 parent 0e1fd0a commit 510d468
1 file changed
+2
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| 16 | + | |
| 17 | + | |
16 | 18 | | |
17 | 19 | | |
18 | 20 | | |
| |||
0 commit comments