Skip to content

Commit 418c932

Browse files
huangdijiaCopilot
andcommitted
Update PHPStan baseline and add doc improvements
Expanded the phpstan-baseline.neon to cover new type and PHPDoc issues, improving static analysis coverage. Added a return type annotation to DatabaseNotification::newCollection and suppressed a PHPStan warning in RefreshToken::getAccessToken for better code clarity. Co-Authored-By: Deeka Wong <[email protected]> Co-Authored-By: Copilot <[email protected]>
1 parent 27bbf3a commit 418c932

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Model/RefreshToken.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function getExpiry(): DateTimeInterface
6666

6767
public function getAccessToken(): ?AccessTokenInterface
6868
{
69-
return $this->accessToken()->first();
69+
return $this->accessToken()->first(); // @phpstan-ignore-line
7070
}
7171

7272
public function isRevoked(): bool

0 commit comments

Comments
 (0)