Test Failed
Push — master ( 0d0443...af4c80 )
by Johnny
04:18 queued 20s
created
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.