-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added @phpstan-require-implements constraints
Signed-off-by: Tom Wright <tom@inflatablecookie.com>
- Loading branch information
1 parent
3a9c940
commit bacd08e
Showing
4 changed files
with
8 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
* Added @phpstan-require-implements constraints | ||
* Made PHP8.1 minimum version | ||
|
||
## v0.3.4 (2023-09-26) | ||
|
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 |
---|---|---|
|
@@ -11,6 +11,9 @@ | |
|
||
use TypeError; | ||
|
||
/** | ||
* @phpstan-require-implements Cast | ||
*/ | ||
trait CastTrait | ||
{ | ||
/** | ||
|
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 |
---|---|---|
|
@@ -9,6 +9,9 @@ | |
|
||
namespace DecodeLabs\Fluidity; | ||
|
||
/** | ||
* @phpstan-require-implements Then | ||
*/ | ||
trait ThenTrait | ||
{ | ||
/** | ||
|