Skip to content

Commit

Permalink
Merge pull request #248 from cakephp/merge-2x
Browse files Browse the repository at this point in the history
merge 2.x => 3.x
  • Loading branch information
LordSimal authored Sep 5, 2023
2 parents 64663dc + 5fa2077 commit 83219a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_docs_2x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Cloning repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions src/Identity.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ public function __construct(AuthorizationServiceInterface $service, AuthenIdenti
/**
* Get the primary key/id field for the identity.
*
* @return string|int|null|array
* @return array|string|int|null
*/
public function getIdentifier(): string|int|null|array
public function getIdentifier(): string|int|array|null
{
return $this->identity->getIdentifier();
}
Expand Down

0 comments on commit 83219a4

Please sign in to comment.