Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Component/Checker/ClaimCheckerManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ public function getCheckers(): array
*
* @param array $claims
*
* @return array
*
* @throws InvalidClaimException
*
* @return array
*/
public function check(array $claims): array
{
Expand Down
2 changes: 1 addition & 1 deletion src/Component/Checker/HeaderCheckerManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ private function __construct(array $checkers, array $tokenTypes)
* This method creates the HeaderCheckerManager.
* The first argument is a list of header parameter checkers objects.
* The second argument is a list of token type support objects.
* It is recommended to support only one token type per manager
* It is recommended to support only one token type per manager.
*
* @param HeaderChecker[] $checkers
* @param TokenTypeSupport[] $tokenTypes
Expand Down
4 changes: 2 additions & 2 deletions src/Component/Checker/InvalidClaimException.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function __construct(string $message, string $claim, $value)
}

/**
* Returns the claim that caused the exception
* Returns the claim that caused the exception.
*
* @return string
*/
Expand All @@ -54,7 +54,7 @@ public function getClaim(): string
}

/**
* Returns the claim value that caused the exception
* Returns the claim value that caused the exception.
*
* @return mixed
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Component/Checker/InvalidHeaderException.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function __construct(string $message, string $header, $value)
}

/**
* Returns the header parameter that caused the exception
* Returns the header parameter that caused the exception.
*
* @return string
*/
Expand All @@ -54,7 +54,7 @@ public function getHeader(): string
}

/**
* Returns the header parameter value that caused the exception
* Returns the header parameter value that caused the exception.
*
* @return mixed
*/
Expand Down