Passed
Push — master ( 25dddf...11bb37 )
by Daniel
04:11 queued 01:41
created
src/OTPGeneratorServiceProvider.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@  discard block
 block discarded – undo
12 12
      * @return void
13 13
      */
14 14
 
15
-     public const DB = __DIR__.'/../database/migrations';
16
-     public const CONFIG = __DIR__.'/../config/otp-generator.php';
15
+        public const DB = __DIR__.'/../database/migrations';
16
+        public const CONFIG = __DIR__.'/../config/otp-generator.php';
17 17
      
18 18
     public function boot()
19 19
     {
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
             $migrationFileName = 'create_otps_table.php';
26 26
             if (! $this->migrationFileExists($migrationFileName)) {
27 27
                 $this->publishes([
28
-                   self::DB."/{$migrationFileName}.stub" => database_path('migrations/' . date('Y_m_d_His', time()) . '_' . $migrationFileName),
28
+                    self::DB."/{$migrationFileName}.stub" => database_path('migrations/' . date('Y_m_d_His', time()) . '_' . $migrationFileName),
29 29
                 ], 'migrations');
30 30
             }
31 31
         }
Please login to merge, or discard this patch.