@@ -86,7 +86,7 @@ |
||
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 | } |
@@ -64,7 +64,7 @@ |
||
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 |