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