Passed
Push — master ( bf1cb1...07ceb6 )
by Vasyl
02:42
created
src/VariableServiceProvider.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@  discard block
 block discarded – undo
19 19
         ], 'variables-config');
20 20
 
21 21
         if (! class_exists('CreateVariablesTable')) {
22
-             $timestamp = date('Y_m_d_His', time());
22
+                $timestamp = date('Y_m_d_His', time());
23 23
 
24
-             $this->publishes([
25
-                 __DIR__.'/../database/migrations/create_variables_table.php.stub' => $this->app->databasePath()."/migrations/{$timestamp}_create_variables_table.php",
26
-             ], 'variables-migrations');
24
+                $this->publishes([
25
+                    __DIR__.'/../database/migrations/create_variables_table.php.stub' => $this->app->databasePath()."/migrations/{$timestamp}_create_variables_table.php",
26
+                ], 'variables-migrations');
27 27
         }
28 28
 
29 29
         if ($this->app['config']->get('variables.config_key_for_vars')) {
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
         }
32 32
 
33 33
         if ($this->app->runningInConsole()) {
34
-             $this->commands([
35
-                 Commands\AllVariable::class,
36
-                 Commands\GetVariable::class,
37
-             ]);
34
+                $this->commands([
35
+                    Commands\AllVariable::class,
36
+                    Commands\GetVariable::class,
37
+                ]);
38 38
         }
39 39
     }
40 40
 
Please login to merge, or discard this patch.