Test Failed
Pull Request — master (#64)
by Johnny
03:29
created
database/migrations/2017_03_14_172117_create_links_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('links', function (Blueprint $table) {
16
+        Schema::create('links', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->unsignedInteger('user_id')->nullable();
19 19
             $table->string('url');
Please login to merge, or discard this patch.
database/migrations/2017_03_17_080125_create_role_user_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('role_user', function (Blueprint $table) {
16
+        Schema::create('role_user', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('user_id')->unsigned()->index();
19 19
             $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function down()
32 32
     {
33
-        Schema::table('role_user', function (Blueprint $table) {
33
+        Schema::table('role_user', function(Blueprint $table) {
34 34
             Schema::drop('role_user');
35 35
         });
36 36
     }
Please login to merge, or discard this patch.
database/migrations/2017_03_17_080010_create_roles_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('roles', function (Blueprint $table) {
16
+        Schema::create('roles', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->text('name');
19 19
             $table->timestamps();
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function down()
29 29
     {
30
-        Schema::table('roles', function (Blueprint $table) {
30
+        Schema::table('roles', function(Blueprint $table) {
31 31
             Schema::drop('roles');
32 32
         });
33 33
     }
Please login to merge, or discard this patch.
database/migrations/2017_03_14_184704_create_hits_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('hits', function (Blueprint $table) {
16
+        Schema::create('hits', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('link_id')->unsigned()->nullable();
19 19
             $table->string('ip')->nullable();
Please login to merge, or discard this patch.
config/debugbar.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         'enabled'    => true,
31 31
         'driver'     => 'file', // redis, file, pdo, custom
32 32
         'path'       => storage_path('debugbar'), // For file driver
33
-        'connection' => null,   // Leave null for default connection (Redis/PDO)
33
+        'connection' => null, // Leave null for default connection (Redis/PDO)
34 34
         'provider'   => '', // Instance of StorageInterface for custom driver
35 35
     ],
36 36
 
@@ -83,26 +83,26 @@  discard block
 block discarded – undo
83 83
      */
84 84
 
85 85
     'collectors' => [
86
-        'phpinfo'         => true,  // Php version
87
-        'messages'        => true,  // Messages
88
-        'time'            => true,  // Time Datalogger
89
-        'memory'          => true,  // Memory usage
90
-        'exceptions'      => true,  // Exception displayer
91
-        'log'             => true,  // Logs from Monolog (merged in messages if enabled)
92
-        'db'              => true,  // Show database (PDO) queries and bindings
93
-        'views'           => true,  // Views with their data
94
-        'route'           => true,  // Current route information
86
+        'phpinfo'         => true, // Php version
87
+        'messages'        => true, // Messages
88
+        'time'            => true, // Time Datalogger
89
+        'memory'          => true, // Memory usage
90
+        'exceptions'      => true, // Exception displayer
91
+        'log'             => true, // Logs from Monolog (merged in messages if enabled)
92
+        'db'              => true, // Show database (PDO) queries and bindings
93
+        'views'           => true, // Views with their data
94
+        'route'           => true, // Current route information
95 95
         'laravel'         => false, // Laravel version and environment
96 96
         'events'          => false, // All events fired
97 97
         'default_request' => false, // Regular or special Symfony request logger
98
-        'symfony_request' => true,  // Only one can be enabled..
99
-        'mail'            => true,  // Catch mail messages
98
+        'symfony_request' => true, // Only one can be enabled..
99
+        'mail'            => true, // Catch mail messages
100 100
         'logs'            => false, // Add the latest log messages
101 101
         'files'           => false, // Show the included files
102 102
         'config'          => false, // Display config settings
103 103
         'auth'            => false, // Display Laravel authentication status
104 104
         'gate'            => false, // Display Laravel Gate checks
105
-        'session'         => true,  // Display session data
105
+        'session'         => true, // Display session data
106 106
     ],
107 107
 
108 108
     /*
@@ -116,26 +116,26 @@  discard block
 block discarded – undo
116 116
 
117 117
     'options' => [
118 118
         'auth' => [
119
-            'show_name' => false,   // Also show the users name/email in the debugbar
119
+            'show_name' => false, // Also show the users name/email in the debugbar
120 120
         ],
121 121
         'db' => [
122
-            'with_params'       => true,   // Render SQL with the parameters substituted
123
-            'timeline'          => false,  // Add the queries to the timeline
124
-            'backtrace'         => false,  // EXPERIMENTAL: Use a backtrace to find the origin of the query in your files.
125
-            'explain'           => [                 // EXPERIMENTAL: Show EXPLAIN output on queries
122
+            'with_params'       => true, // Render SQL with the parameters substituted
123
+            'timeline'          => false, // Add the queries to the timeline
124
+            'backtrace'         => false, // EXPERIMENTAL: Use a backtrace to find the origin of the query in your files.
125
+            'explain'           => [// EXPERIMENTAL: Show EXPLAIN output on queries
126 126
                 'enabled' => false,
127
-                'types'   => ['SELECT'],     // ['SELECT', 'INSERT', 'UPDATE', 'DELETE']; for MySQL 5.6.3+
127
+                'types'   => ['SELECT'], // ['SELECT', 'INSERT', 'UPDATE', 'DELETE']; for MySQL 5.6.3+
128 128
             ],
129
-            'hints'             => true,    // Show hints for common mistakes
129
+            'hints'             => true, // Show hints for common mistakes
130 130
         ],
131 131
         'mail' => [
132 132
             'full_log' => false,
133 133
         ],
134 134
         'views' => [
135
-            'data' => false,    //Note: Can slow down the application, because the data can be quite large..
135
+            'data' => false, //Note: Can slow down the application, because the data can be quite large..
136 136
         ],
137 137
         'route' => [
138
-            'label' => true,  // show complete route on bar
138
+            'label' => true, // show complete route on bar
139 139
         ],
140 140
         'logs' => [
141 141
             'file' => null,
Please login to merge, or discard this patch.
database/migrations/2017_03_20_230022_add_activation_flag_to_user_table.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('users', function (Blueprint $table) {
16
+        Schema::table('users', function(Blueprint $table) {
17 17
             $table->integer('activated')->default(0);
18 18
         });
19 19
 
20
-        Schema::table('users', function (Blueprint $table) {
20
+        Schema::table('users', function(Blueprint $table) {
21 21
             $table->string('email_token')->nullable();
22 22
         });
23 23
     }
@@ -29,11 +29,11 @@  discard block
 block discarded – undo
29 29
      */
30 30
     public function down()
31 31
     {
32
-        Schema::table('users', function (Blueprint $table) {
32
+        Schema::table('users', function(Blueprint $table) {
33 33
             $table->dropColumn('activated');
34 34
         });
35 35
 
36
-        Schema::table('users', function (Blueprint $table) {
36
+        Schema::table('users', function(Blueprint $table) {
37 37
             $table->dropColumn('email_token');
38 38
         });
39 39
     }
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     public function boot()
27 27
     {
28 28
         //
29
-        Route::bind('linkHash', function ($hash) {
29
+        Route::bind('linkHash', function($hash) {
30 30
             try {
31 31
                 return Link::where('hash', $hash)->firstOrFail();
32 32
             } catch (ModelNotFoundException $e) {
Please login to merge, or discard this patch.