ソースを参照

Untaught trick: avoid the magic facades in web.php.

Frederic G. MARAND 6 年 前
コミット
2107edcb2f
1 ファイル変更3 行追加2 行削除
  1. 3 2
      routes/web.php

+ 3 - 2
routes/web.php

@@ -11,8 +11,9 @@
 |
 */
 
-Route::get('/tasks', 'TasksController@index');
-Route::get('/tasks/{task}', 'TasksController@show');
+/** @var \Illuminate\Routing\Router $this */
+$this->get('/tasks', 'TasksController@index');
+$this->get('/tasks/{task}', 'TasksController@show');
 
 /*
 Route::get('/tasks', function () {