Преглед изворни кода

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

Frederic G. MARAND пре 7 година
родитељ
комит
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 () {