Passed
Pull Request — master (#112)
by Arman
02:55
created
src/Console/Commands/KeyGenerateCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
      */
87 87
     private function generateRandomKey(): string
88 88
     {
89
-        return base64_encode(random_bytes((int)$this->getOption('length')));
89
+        return base64_encode(random_bytes((int) $this->getOption('length')));
90 90
     }
91 91
 
92 92
 }
Please login to merge, or discard this patch.
src/Console/Commands/MigrationMigrateCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     public function exec()
65 65
     {
66 66
         $direction = $this->getArgument('direction') ?: MigrationManager::UPGRADE;
67
-        $step = (int)$this->getOption('step') ?: null;
67
+        $step = (int) $this->getOption('step') ?: null;
68 68
 
69 69
         $migrationManager = new MigrationManager();
70 70
 
Please login to merge, or discard this patch.