Lint
This commit is contained in:
parent
58798146d4
commit
2ecdf6e362
|
@ -4,6 +4,9 @@ includes:
|
||||||
|
|
||||||
parameters:
|
parameters:
|
||||||
|
|
||||||
|
stubFiles:
|
||||||
|
- tests/stub/phpstan/TestResponse.stub
|
||||||
|
|
||||||
paths:
|
paths:
|
||||||
- app
|
- app
|
||||||
- tests
|
- tests
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Illuminate\Testing;
|
||||||
|
|
||||||
|
use Symfony\Component\HttpFoundation\File\File;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @method self assertInertiaPath(string $path, string $value)
|
||||||
|
* @method File getFile()
|
||||||
|
*/
|
||||||
|
class TestResponse
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue