Skip to content

Commit 52de410

Browse files
Add more nullsafe operators
1 parent 00f602b commit 52de410

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Authenticator/Debug/TraceableAuthenticator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function getInfo(): array
4545
'supports' => true,
4646
'passport' => $this->passport,
4747
'duration' => $this->duration,
48-
'stub' => $this->stub ?? $this->stub = class_exists(ClassStub::class) ? new ClassStub(\get_class($this->authenticator)) : \get_class($this->authenticator),
48+
'stub' => $this->stub ??= class_exists(ClassStub::class) ? new ClassStub(\get_class($this->authenticator)) : \get_class($this->authenticator),
4949
];
5050
}
5151

0 commit comments

Comments
 (0)