Skip to content

Commit 913920f

Browse files
Ignore phpstan errors for app authentication methods
1 parent 88d1603 commit 913920f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

app/Models/User.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,16 @@ public function getAppAuthenticationHolderName(): string
5353
return $this->email;
5454
}
5555

56+
/** @phpstan-ignore-next-line */
5657
public function getAppAuthenticationRecoveryCodes(): ?array
5758
{
59+
/** @phpstan-ignore-next-line */
5860
return $this->app_authentication_recovery_codes;
5961
}
6062

6163
public function saveAppAuthenticationRecoveryCodes(?array $codes): void
6264
{
65+
/** @phpstan-ignore-next-line */
6366
$this->app_authentication_recovery_codes = $codes;
6467
$this->save();
6568
}

0 commit comments

Comments
 (0)