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

Commit 743309c

Browse files
CS fix
1 parent 62ec332 commit 743309c

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

src/AbstractExtractor.php

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,7 @@ public function __construct(
3030
}
3131

3232
if (ExtractorInterface::IN_HEADER !== $in && ExtractorInterface::IN_QUERY_PARAM !== $in) {
33-
throw new \LogicException(
34-
sprintf(
35-
'Origin token must in: `%s` or `%s`, can not in: `%s`',
36-
ExtractorInterface::IN_HEADER,
37-
ExtractorInterface::IN_QUERY_PARAM,
38-
$in
39-
)
40-
);
33+
throw new \LogicException(sprintf('Origin token must in: `%s` or `%s`, can not in: `%s`', ExtractorInterface::IN_HEADER, ExtractorInterface::IN_QUERY_PARAM, $in));
4134
}
4235

4336
$this->issuer = $issuer;

tests/RequestCreatorTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ private function createRequest(array $headers = [], array $queryParams = []): Se
3535
get: $queryParams
3636
);
3737
}
38-
}
38+
}

0 commit comments

Comments
 (0)