sierky
Results
1
issues of
sierky
When destructuring non-array values with list() or [], PHP leaves variables empty without error. Example: ``` [$a, $b] = true; ``` ``` list($a, $b) = true; ``` ``` function test():...