diff --git a/.gitattributes b/.gitattributes index 7450a3ed..639989d1 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7,6 +7,7 @@ /.gitignore export-ignore /.github export-ignore /.php-cs-fixer.dist.php export-ignore +/_ide_helpers.php export-ignore /phpunit.xml.dist export-ignore /tests export-ignore /CHANGELOG.md export-ignore diff --git a/_ide_helpers.php b/_ide_helpers.php index 72a525dd..c3b8f827 100644 --- a/_ide_helpers.php +++ b/_ide_helpers.php @@ -29,52 +29,3 @@ class TestResponse // } } - -namespace Illuminate\Support\Facades { - - /** - * @see \Inertia\ServiceProvider - * - * @method static bool inertia() - */ - class Request - { - // - } - - /** - * @see \Inertia\ServiceProvider - * - * @method static self inertia(string $uri, string $component, array $props = []) - */ - class Route - { - // - } -} - -namespace Illuminate\Http { - - /** - * @see \Inertia\ServiceProvider - * - * @method bool inertia() - */ - class Request - { - // - } -} - -namespace Illuminate\Routing { - - /** - * @see \Inertia\ServiceProvider - * - * @method self inertia(string $uri, string $component, array $props = []) - */ - class Router - { - // - } -}