@@ -11,13 +11,13 @@ |
||
11 | 11 | public function publicRoutes($uri, $controller, $name) |
12 | 12 | { |
13 | 13 | Route::get($uri, $controller.'@index') |
14 | - ->name($name.'.index'); |
|
14 | + ->name($name.'.index'); |
|
15 | 15 | |
16 | 16 | Route::get($uri.'/{uuid}', $controller.'@show') |
17 | - ->name($name.'.show'); |
|
17 | + ->name($name.'.show'); |
|
18 | 18 | |
19 | 19 | Route::get($uri.'/destroyed', $controller.'@destroyed') |
20 | - ->name($name.'.destroyed'); |
|
20 | + ->name($name.'.destroyed'); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | public function routesWithPermission() |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | |
9 | 9 | class BaseApplication extends Application |
10 | 10 | { |
11 | - public function publicRoutes($uri, $controller, $name) |
|
11 | + public function publicRoutes ($uri, $controller, $name) |
|
12 | 12 | { |
13 | 13 | Route::get($uri, $controller.'@index') |
14 | 14 | ->name($name.'.index'); |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | ->name($name.'.destroyed'); |
21 | 21 | } |
22 | 22 | |
23 | - public function routesWithPermission() |
|
23 | + public function routesWithPermission () |
|
24 | 24 | { |
25 | 25 | |
26 | 26 | } |
@@ -6,8 +6,7 @@ |
||
6 | 6 | use Illuminate\Foundation\Application; |
7 | 7 | use Illuminate\Support\Facades\Route; |
8 | 8 | |
9 | -class BaseApplication extends Application |
|
10 | -{ |
|
9 | +class BaseApplication extends Application { |
|
11 | 10 | public function publicRoutes($uri, $controller, $name) |
12 | 11 | { |
13 | 12 | Route::get($uri, $controller.'@index') |