Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
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‎

Lines changed: 1 addition & 1 deletion
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)

AltStyle によって変換されたページ (->オリジナル) /