Test Setup Failed
Push — master ( 414ec1...843f83 )
by Raí
13:52 queued 06:11
created
app/Http/Controllers/Auth/RegisterController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,7 @@
 block discarded – undo
7 7
 use Illuminate\Foundation\Auth\RegistersUsers;
8 8
 use Illuminate\Support\Facades\Validator;
9 9
 
10
-class RegisterController extends Controller
11
-{
10
+class RegisterController extends Controller {
12 11
     /*
13 12
     |--------------------------------------------------------------------------
14 13
     | Register Controller
Please login to merge, or discard this patch.
app/Http/Middleware/EncryptCookies.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
6 6
 
7
-class EncryptCookies extends Middleware
8
-{
7
+class EncryptCookies extends Middleware {
9 8
     /**
10 9
      * The names of the cookies that should not be encrypted.
11 10
      *
Please login to merge, or discard this patch.
app/Http/Middleware/TrustProxies.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,7 @@
 block discarded – undo
5 5
 use Fideloper\Proxy\TrustProxies as Middleware;
6 6
 use Illuminate\Http\Request;
7 7
 
8
-class TrustProxies extends Middleware
9
-{
8
+class TrustProxies extends Middleware {
10 9
     /**
11 10
      * The trusted proxies for this application.
12 11
      *
Please login to merge, or discard this patch.
app/Http/Middleware/TrimStrings.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
6 6
 
7
-class TrimStrings extends Middleware
8
-{
7
+class TrimStrings extends Middleware {
9 8
     /**
10 9
      * The names of the attributes that should not be trimmed.
11 10
      *
Please login to merge, or discard this patch.
app/Http/Middleware/VerifyCsrfToken.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
6 6
 
7
-class VerifyCsrfToken extends Middleware
8
-{
7
+class VerifyCsrfToken extends Middleware {
9 8
     /**
10 9
      * The URIs that should be excluded from CSRF verification.
11 10
      *
Please login to merge, or discard this patch.
app/Console/Kernel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      *
24 24
      * @return void
25 25
      */
26
-    protected function schedule(Schedule $schedule)
26
+    protected function schedule (Schedule $schedule)
27 27
     {
28 28
         // $schedule->command('inspire')
29 29
         //          ->hourly();
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      *
35 35
      * @return void
36 36
      */
37
-    protected function commands()
37
+    protected function commands ()
38 38
     {
39 39
         $this->load(__DIR__.'/Commands');
40 40
 
Please login to merge, or discard this patch.
app/Exceptions/Handler.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      *
36 36
      * @return void
37 37
      */
38
-    public function report(Exception $exception)
38
+    public function report (Exception $exception)
39 39
     {
40 40
         parent::report($exception);
41 41
     }
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      *
49 49
      * @return \Illuminate\Http\Response
50 50
      */
51
-    public function render($request, Exception $exception)
51
+    public function render ($request, Exception $exception)
52 52
     {
53 53
         return parent::render($request, $exception);
54 54
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,7 @@
 block discarded – undo
5 5
 use Exception;
6 6
 use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
7 7
 
8
-class Handler extends ExceptionHandler
9
-{
8
+class Handler extends ExceptionHandler {
10 9
     /**
11 10
      * A list of the exception types that are not reported.
12 11
      *
Please login to merge, or discard this patch.
public/index.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  *
6 6
  * @author   Taylor Otwell <[email protected]>
7 7
  */
8
-define('LARAVEL_START', microtime(true));
8
+define('LARAVEL_START', microtime(TRUE));
9 9
 
10 10
 /*
11 11
 |--------------------------------------------------------------------------
Please login to merge, or discard this patch.
config/session.php 1 patch
Upper-Lower-Casing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
44 44
     |
45 45
     */
46 46
 
47
-    'encrypt' => false,
47
+    'encrypt' => FALSE,
48 48
 
49 49
     /*
50 50
     |--------------------------------------------------------------------------
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     |
71 71
     */
72 72
 
73
-    'connection' => null,
73
+    'connection' => NULL,
74 74
 
75 75
     /*
76 76
     |--------------------------------------------------------------------------
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     |
97 97
     */
98 98
 
99
-    'store' => null,
99
+    'store' => NULL,
100 100
 
101 101
     /*
102 102
     |--------------------------------------------------------------------------
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
192 192
     |
193 193
     */
194 194
 
195
-    'same_site' => null,
195
+    'same_site' => NULL,
196 196
 
197 197
 ];
Please login to merge, or discard this patch.