-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor to replace WeavedInterface with SetStateInterface
This updates the codebase to use the new SetStateInterface instead of the deprecated WeavedInterface. The changes include interface replacement in method checks, class generation, and documentation adjustments to maintain consistency. A new SetStateInterface is introduced, and relevant bindings are updated accordingly.
- Loading branch information
Showing
5 changed files
with
23 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Ray\Aop; | ||
|
||
use Ray\Aop\MethodInterceptor as MethodBindings; | ||
|
||
/** @psalm-import-type MethodBindings from Types */ | ||
interface SetStateInterface extends WeavedInterface | ||
Check failure on line 10 in src/SetStateInterface.php
|
||
{ | ||
/** | ||
* @param MethodBindings $bindings | ||
* | ||
* @SuppressWarnings(PHPMD.CamelCaseMethodName) | ||
*/ | ||
public function _initState(array $bindings): void; // phpcs:ignore | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters