Skip to content

Commit

Permalink
Suppress fals-positive by PHPStan
Browse files Browse the repository at this point in the history
PHPStan flagged an issue with the interface extension. Added an `@phpstan-ignore-line` comment to suppress the warning and maintain compatibility without altering the functionality.
  • Loading branch information
koriym committed Feb 14, 2025
1 parent c60b168 commit 6313b16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SetStateInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Ray\Aop\MethodInterceptor as MethodBindings;

/** @psalm-import-type MethodBindings from Types */
interface SetStateInterface extends WeavedInterface
interface SetStateInterface extends WeavedInterface // @phpstan-ignore-line
{
/**
* @param MethodBindings $bindings
Expand Down

0 comments on commit 6313b16

Please sign in to comment.