Passed
Push — main ( fca039...7fcf9f )
by Charlie
03:08
created
src/Commands/GeneratePasswordKeyCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/PasswordServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
src/PasswordManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.