Passed
Push — master ( 0fe4f0...2f5d7b )
by Daniel
11:30
created
src/OtpGeneratorServiceProvider.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
      * @return void
16 16
      */
17 17
 
18
-     public const DB = __DIR__.'/../database/migrations';
19
-     public const CONFIG = __DIR__.'/../config/otp-generator.php';
18
+        public const DB = __DIR__.'/../database/migrations';
19
+        public const CONFIG = __DIR__.'/../config/otp-generator.php';
20 20
 
21 21
     public function boot(): void
22 22
     {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
      * @return void
16 16
      */
17 17
 
18
-     public const DB = __DIR__.'/../database/migrations';
19
-     public const CONFIG = __DIR__.'/../config/otp-generator.php';
18
+     public const DB = __DIR__ . '/../database/migrations';
19
+     public const CONFIG = __DIR__ . '/../config/otp-generator.php';
20 20
 
21 21
     public function boot(): void
22 22
     {
Please login to merge, or discard this patch.
src/Console/PruneCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,6 +29,6 @@
 block discarded – undo
29 29
      */
30 30
     public function handle(PrunableRepository $repository)
31 31
     {
32
-        $this->info($repository->prune(now()->subMinutes((int) $this->option('minutes'))).' entries pruned.');
32
+        $this->info($repository->prune(now()->subMinutes((int) $this->option('minutes'))) . ' entries pruned.');
33 33
     }
34 34
 }
Please login to merge, or discard this patch.