@@ -32,7 +32,7 @@ |
||
32 | 32 | $key = $manager->dynamicKey($this->argument('length') ?? 16); |
33 | 33 | |
34 | 34 | $this->info('Key generated successfully:'); |
35 | - $this->line('<comment>'.$key.'</comment>'); |
|
35 | + $this->line('<comment>' . $key . '</comment>'); |
|
36 | 36 | |
37 | 37 | return 0; |
38 | 38 | } |
@@ -33,7 +33,7 @@ |
||
33 | 33 | ], 'config'); |
34 | 34 | |
35 | 35 | // Publish the database migrations |
36 | - if (! class_exists('CreatePasswordsTable')) { |
|
36 | + if (!class_exists('CreatePasswordsTable')) { |
|
37 | 37 | $this->publishes([ |
38 | 38 | __DIR__ . '/../database/migrations/create_passwords_table.php.stub' => database_path('migrations/' . date('Y_m_d_His', time()) . '_create_passwords_table.php'), |
39 | 39 | ], 'migrations'); |
@@ -49,7 +49,7 @@ |
||
49 | 49 | */ |
50 | 50 | public function setModel($model): self |
51 | 51 | { |
52 | - if (! class_exists($model)) { |
|
52 | + if (!class_exists($model)) { |
|
53 | 53 | throw new Exception("Class [$model] does not exist."); |
54 | 54 | } |
55 | 55 |