Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit ec88d7d

Browse files
Fix condition when checking type of JWT in request bag
1 parent 84dd9bb commit ec88d7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AbstractExtractor.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ final public function extract(Request $request): ?array
4242
$bag = $request->{$this->requestBag};
4343
$value = $bag->get($this->itemName);
4444

45-
if (false !== is_string($value)) {
45+
if (false === is_string($value)) {
4646
return null;
4747
}
4848

0 commit comments

Comments
 (0)