Skip to content

Commit 35c48a0

Browse files
committed
Add a few more ??=
1 parent 4711bd0 commit 35c48a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Session/Storage/MockArraySessionStorage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ protected function loadSession()
208208

209209
foreach ($bags as $bag) {
210210
$key = $bag->getStorageKey();
211-
$this->data[$key] = $this->data[$key] ?? [];
211+
$this->data[$key] ??= [];
212212
$bag->initialize($this->data[$key]);
213213
}
214214

0 commit comments

Comments
 (0)