|
3 | 3 | namespace Illuminate\Support\Facades; |
4 | 4 |
|
5 | 5 | /** |
6 | | - * @method static void get(string $uri, \Closure|array|string $action) |
7 | | - * @method static void post(string $uri, \Closure|array|string $action) |
8 | | - * @method static void put(string $uri, \Closure|array|string $action) |
9 | | - * @method static void delete(string $uri, \Closure|array|string $action) |
10 | | - * @method static void patch(string $uri, \Closure|array|string $action) |
11 | | - * @method static void options(string $uri, \Closure|array|string $action) |
12 | | - * @method static void match(array|string $methods, string $uri, \Closure|array|string $action) |
| 6 | + * @method static \Illuminate\Routing\Route get(string $uri, \Closure|array|string $action) |
| 7 | + * @method static \Illuminate\Routing\Route post(string $uri, \Closure|array|string $action) |
| 8 | + * @method static \Illuminate\Routing\Route put(string $uri, \Closure|array|string $action) |
| 9 | + * @method static \Illuminate\Routing\Route delete(string $uri, \Closure|array|string $action) |
| 10 | + * @method static \Illuminate\Routing\Route patch(string $uri, \Closure|array|string $action) |
| 11 | + * @method static \Illuminate\Routing\Route options(string $uri, \Closure|array|string $action) |
| 12 | + * @method static \Illuminate\Routing\Route any(string $uri, \Closure|array|string $action) |
| 13 | + * @method static \Illuminate\Routing\Route match(array|string $methods, string $uri, \Closure|array|string $action) |
13 | 14 | * @method static void resource(string $name, string $controller, array $options = []) |
14 | 15 | * @method static void group(array $attributes, \Closure $callback) |
15 | 16 | * @method static \Illuminate\Routing\Route substituteBindings(\Illuminate\Routing\Route $route) |
|
0 commit comments