Test Setup Failed
Push — master ( 290539...414ec1 )
by Raí
17:00 queued 10:56
created
app/Http/Controllers/Auth/ResetPasswordController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
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
     }
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 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
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/LoginController.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      *
33 33
      * @return void
34 34
      */
35
-    public function __construct()
35
+    public function __construct ()
36 36
     {
37 37
         $this->middleware('guest')->except('logout');
38 38
     }
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 Illuminate\Foundation\Auth\AuthenticatesUsers;
6 6
 use LaravelSeed\Http\Controllers\Controller;
7 7
 
8
-class LoginController extends Controller
9
-{
8
+class LoginController extends Controller {
10 9
     /*
11 10
     |--------------------------------------------------------------------------
12 11
     | Login Controller
Please login to merge, or discard this patch.
app/Http/Middleware/RedirectIfAuthenticated.php 3 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      *
17 17
      * @return mixed
18 18
      */
19
-    public function handle($request, Closure $next, $guard = null)
19
+    public function handle ($request, Closure $next, $guard = null)
20 20
     {
21 21
         if (Auth::guard($guard)->check()) {
22 22
             return redirect('/home');
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 Closure;
6 6
 use Illuminate\Support\Facades\Auth;
7 7
 
8
-class RedirectIfAuthenticated
9
-{
8
+class RedirectIfAuthenticated {
10 9
     /**
11 10
      * Handle an incoming request.
12 11
      *
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      *
17 17
      * @return mixed
18 18
      */
19
-    public function handle($request, Closure $next, $guard = null)
19
+    public function handle($request, Closure $next, $guard = NULL)
20 20
     {
21 21
         if (Auth::guard($guard)->check()) {
22 22
             return redirect('/home');
Please login to merge, or discard this patch.
app/Http/Kernel.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\Kernel as HttpKernel;
6 6
 
7
-class Kernel extends HttpKernel
8
-{
7
+class Kernel extends HttpKernel {
9 8
     /**
10 9
      * The application's global HTTP middleware stack.
11 10
      *
Please login to merge, or discard this patch.
app/Console/Kernel.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,7 @@
 block discarded – undo
5 5
 use Illuminate\Console\Scheduling\Schedule;
6 6
 use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
7 7
 
8
-class Kernel extends ConsoleKernel
9
-{
8
+class Kernel extends ConsoleKernel {
10 9
     /**
11 10
      * The Artisan commands provided by your application.
12 11
      *
Please login to merge, or discard this 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
         require base_path('routes/console.php');
40 40
     }
Please login to merge, or discard this patch.
database/migrations/2014_10_12_100000_create_password_resets_table.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      *
12 12
      * @return void
13 13
      */
14
-    public function up()
14
+    public function up ()
15 15
     {
16 16
         Schema::create('password_resets', function (Blueprint $table) {
17 17
             $table->string('email')->index();
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      *
26 26
      * @return void
27 27
      */
28
-    public function down()
28
+    public function down ()
29 29
     {
30 30
         Schema::dropIfExists('password_resets');
31 31
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 use Illuminate\Database\Schema\Blueprint;
5 5
 use Illuminate\Support\Facades\Schema;
6 6
 
7
-class CreatePasswordResetsTable extends Migration
8
-{
7
+class CreatePasswordResetsTable extends Migration {
9 8
     /**
10 9
      * Run the migrations.
11 10
      *
Please login to merge, or discard this patch.
database/migrations/2014_10_12_000000_create_users_table.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      *
12 12
      * @return void
13 13
      */
14
-    public function up()
14
+    public function up ()
15 15
     {
16 16
         Schema::create('users', function (Blueprint $table) {
17 17
             $table->increments('id');
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      *
29 29
      * @return void
30 30
      */
31
-    public function down()
31
+    public function down ()
32 32
     {
33 33
         Schema::dropIfExists('users');
34 34
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 use Illuminate\Database\Schema\Blueprint;
5 5
 use Illuminate\Support\Facades\Schema;
6 6
 
7
-class CreateUsersTable extends Migration
8
-{
7
+class CreateUsersTable extends Migration {
9 8
     /**
10 9
      * Run the migrations.
11 10
      *
Please login to merge, or discard this patch.
database/seeds/DatabaseSeeder.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
      *
10 10
      * @return void
11 11
      */
12
-    public function run()
12
+    public function run ()
13 13
     {
14 14
         // $this->call(UsersTableSeeder::class);
15 15
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use Illuminate\Database\Seeder;
4 4
 
5
-class DatabaseSeeder extends Seeder
6
-{
5
+class DatabaseSeeder extends Seeder {
7 6
     /**
8 7
      * Run the database seeds.
9 8
      *
Please login to merge, or discard this patch.
config/cache.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         'database' => [
42 42
             'driver'     => 'database',
43 43
             'table'      => 'cache',
44
-            'connection' => null,
44
+            'connection' => NULL,
45 45
         ],
46 46
 
47 47
         'file' => [
Please login to merge, or discard this patch.