@@ -109,7 +109,7 @@ |
||
109 | 109 | | |
110 | 110 | */ |
111 | 111 | |
112 | - 'lottery' => [2, 100], |
|
112 | + 'lottery' => [ 2, 100 ], |
|
113 | 113 | |
114 | 114 | /* |
115 | 115 | |-------------------------------------------------------------------------- |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | |
32 | 32 | 'lifetime' => 120, |
33 | 33 | |
34 | - 'expire_on_close' => false, |
|
34 | + 'expire_on_close' => FALSE, |
|
35 | 35 | |
36 | 36 | /* |
37 | 37 | |-------------------------------------------------------------------------- |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | | |
45 | 45 | */ |
46 | 46 | |
47 | - 'encrypt' => false, |
|
47 | + 'encrypt' => FALSE, |
|
48 | 48 | |
49 | 49 | /* |
50 | 50 | |-------------------------------------------------------------------------- |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | | |
71 | 71 | */ |
72 | 72 | |
73 | - 'connection' => null, |
|
73 | + 'connection' => NULL, |
|
74 | 74 | |
75 | 75 | /* |
76 | 76 | |-------------------------------------------------------------------------- |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | | |
97 | 97 | */ |
98 | 98 | |
99 | - 'store' => null, |
|
99 | + 'store' => NULL, |
|
100 | 100 | |
101 | 101 | /* |
102 | 102 | |-------------------------------------------------------------------------- |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | | |
152 | 152 | */ |
153 | 153 | |
154 | - 'domain' => env('SESSION_DOMAIN', null), |
|
154 | + 'domain' => env('SESSION_DOMAIN', NULL), |
|
155 | 155 | |
156 | 156 | /* |
157 | 157 | |-------------------------------------------------------------------------- |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | | |
165 | 165 | */ |
166 | 166 | |
167 | - 'secure' => env('SESSION_SECURE_COOKIE', false), |
|
167 | + 'secure' => env('SESSION_SECURE_COOKIE', FALSE), |
|
168 | 168 | |
169 | 169 | /* |
170 | 170 | |-------------------------------------------------------------------------- |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | | |
178 | 178 | */ |
179 | 179 | |
180 | - 'http_only' => true, |
|
180 | + 'http_only' => TRUE, |
|
181 | 181 | |
182 | 182 | /* |
183 | 183 | |-------------------------------------------------------------------------- |
@@ -192,6 +192,6 @@ discard block |
||
192 | 192 | | |
193 | 193 | */ |
194 | 194 | |
195 | - 'same_site' => null, |
|
195 | + 'same_site' => NULL, |
|
196 | 196 | |
197 | 197 | ]; |
@@ -116,6 +116,6 @@ |
||
116 | 116 | | |
117 | 117 | */ |
118 | 118 | |
119 | - 'attributes' => [], |
|
119 | + 'attributes' => [ ], |
|
120 | 120 | |
121 | 121 | ]; |
@@ -5,8 +5,7 @@ |
||
5 | 5 | use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; |
6 | 6 | use Illuminate\Support\Facades\Route; |
7 | 7 | |
8 | -class RouteServiceProvider extends ServiceProvider |
|
9 | -{ |
|
8 | +class RouteServiceProvider extends ServiceProvider { |
|
10 | 9 | /** |
11 | 10 | * This namespace is applied to your controller routes. |
12 | 11 | * |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @return void |
23 | 23 | */ |
24 | - public function boot() |
|
24 | + public function boot () |
|
25 | 25 | { |
26 | 26 | // |
27 | 27 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * |
34 | 34 | * @return void |
35 | 35 | */ |
36 | - public function map() |
|
36 | + public function map () |
|
37 | 37 | { |
38 | 38 | $this->mapApiRoutes(); |
39 | 39 | |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | * |
50 | 50 | * @return void |
51 | 51 | */ |
52 | - protected function mapWebRoutes() |
|
52 | + protected function mapWebRoutes () |
|
53 | 53 | { |
54 | 54 | Route::middleware('web') |
55 | 55 | ->namespace($this->namespace) |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | * |
64 | 64 | * @return void |
65 | 65 | */ |
66 | - protected function mapApiRoutes() |
|
66 | + protected function mapApiRoutes () |
|
67 | 67 | { |
68 | 68 | Route::prefix('api') |
69 | 69 | ->middleware('api') |
@@ -4,8 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Illuminate\Support\ServiceProvider; |
6 | 6 | |
7 | -class AppServiceProvider extends ServiceProvider |
|
8 | -{ |
|
7 | +class AppServiceProvider extends ServiceProvider { |
|
9 | 8 | /** |
10 | 9 | * Bootstrap any application services. |
11 | 10 | * |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | * |
12 | 12 | * @return void |
13 | 13 | */ |
14 | - public function boot() |
|
14 | + public function boot () |
|
15 | 15 | { |
16 | 16 | // |
17 | 17 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @return void |
23 | 23 | */ |
24 | - public function register() |
|
24 | + public function register () |
|
25 | 25 | { |
26 | 26 | $arrClassName = [ |
27 | 27 | 'Rota', |
@@ -12,7 +12,7 @@ |
||
12 | 12 | * |
13 | 13 | * @return void |
14 | 14 | */ |
15 | - public function boot() |
|
15 | + public function boot () |
|
16 | 16 | { |
17 | 17 | Broadcast::routes(); |
18 | 18 |
@@ -5,8 +5,7 @@ |
||
5 | 5 | use Illuminate\Support\Facades\Broadcast; |
6 | 6 | use Illuminate\Support\ServiceProvider; |
7 | 7 | |
8 | -class BroadcastServiceProvider extends ServiceProvider |
|
9 | -{ |
|
8 | +class BroadcastServiceProvider extends ServiceProvider { |
|
10 | 9 | /** |
11 | 10 | * Bootstrap any application services. |
12 | 11 | * |
@@ -23,7 +23,7 @@ |
||
23 | 23 | * |
24 | 24 | * @return void |
25 | 25 | */ |
26 | - public function boot() |
|
26 | + public function boot () |
|
27 | 27 | { |
28 | 28 | parent::boot(); |
29 | 29 |
@@ -5,8 +5,7 @@ |
||
5 | 5 | use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; |
6 | 6 | use Illuminate\Support\Facades\Event; |
7 | 7 | |
8 | -class EventServiceProvider extends ServiceProvider |
|
9 | -{ |
|
8 | +class EventServiceProvider extends ServiceProvider { |
|
10 | 9 | /** |
11 | 10 | * The event listener mappings for the application. |
12 | 11 | * |
@@ -20,7 +20,7 @@ |
||
20 | 20 | * |
21 | 21 | * @return void |
22 | 22 | */ |
23 | - public function boot() |
|
23 | + public function boot () |
|
24 | 24 | { |
25 | 25 | $this->registerPolicies(); |
26 | 26 |
@@ -4,8 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; |
6 | 6 | |
7 | -class AuthServiceProvider extends ServiceProvider |
|
8 | -{ |
|
7 | +class AuthServiceProvider extends ServiceProvider { |
|
9 | 8 | /** |
10 | 9 | * The policy mappings for the application. |
11 | 10 | * |
@@ -7,7 +7,6 @@ |
||
7 | 7 | use Illuminate\Foundation\Validation\ValidatesRequests; |
8 | 8 | use Illuminate\Routing\Controller as BaseController; |
9 | 9 | |
10 | -class Controller extends BaseController |
|
11 | -{ |
|
10 | +class Controller extends BaseController { |
|
12 | 11 | use AuthorizesRequests, DispatchesJobs, ValidatesRequests; |
13 | 12 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | * |
33 | 33 | * @return void |
34 | 34 | */ |
35 | - public function __construct() |
|
35 | + public function __construct () |
|
36 | 36 | { |
37 | 37 | $this->middleware('guest'); |
38 | 38 | } |
@@ -5,8 +5,7 @@ |
||
5 | 5 | use Illuminate\Foundation\Auth\ResetsPasswords; |
6 | 6 | use LaravelSeed\Http\Controllers\Controller; |
7 | 7 | |
8 | -class ResetPasswordController extends Controller |
|
9 | -{ |
|
8 | +class ResetPasswordController extends Controller { |
|
10 | 9 | /* |
11 | 10 | |-------------------------------------------------------------------------- |
12 | 11 | | Password Reset Controller |