forked from laravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[9.x] Improves
$request->enum()
type API (laravel#44370)
* improve input enum method * type test for input enum method * Apply fixes from StyleCI * Fixes types tests and improves wording of generics Co-authored-by: SupunKavinda <[email protected]> Co-authored-by: StyleCI Bot <[email protected]>
- Loading branch information
1 parent
678da30
commit 22e85eb
Showing
2 changed files
with
18 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
|
||
use Illuminate\Http\Request; | ||
use function PHPStan\Testing\assertType; | ||
|
||
class TestEnum | ||
{ | ||
} | ||
|
||
$request = Request::create('/', 'GET', [ | ||
'key' => 'test', | ||
]); | ||
|
||
assertType('TestEnum|null', $request->enum('key', TestEnum::class)); |