Skip to content

Commit 13c88fd

Browse files
Add more nullsafe operators
1 parent a325725 commit 13c88fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Debug/TraceableListenerTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function getInfo(): array
4545
return [
4646
'response' => $this->response,
4747
'time' => $this->time,
48-
'stub' => $this->stub ?? $this->stub = ClassStub::wrapCallable($this->listener instanceof TraceableAuthenticatorManagerListener ? $this->listener->getAuthenticatorManagerListener() : $this->listener),
48+
'stub' => $this->stub ??= ClassStub::wrapCallable($this->listener instanceof TraceableAuthenticatorManagerListener ? $this->listener->getAuthenticatorManagerListener() : $this->listener),
4949
];
5050
}
5151
}

0 commit comments

Comments
 (0)