Passed
Push — master ( 163d3a...80342f )
by Korotkov
03:08 queued 01:31
created
app/Ship/Command/BcryptCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,6 +18,6 @@
 block discarded – undo
18 18
         Cli::printer("Enter password: ", "magneta");
19 19
         $password = trim(fgets(fopen("php://stdin", "r")));
20 20
 
21
-        Cli::printer(Auth::bcrypt($password) . PHP_EOL, "cyan", );
21
+        Cli::printer(Auth::bcrypt($password) . PHP_EOL, "cyan",);
22 22
     }
23 23
 }
Please login to merge, or discard this patch.
app/Ship/Command/ArrayToYml.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
             $yaml = Yaml::dump($array);
20 20
             file_put_contents("config/$filename.yml", $yaml);
21 21
 
22
-            Cli::printer("Yml was created" . PHP_EOL, "cyan", );
22
+            Cli::printer("Yml was created" . PHP_EOL, "cyan",);
23 23
         } catch (Exception $e) {
24
-            echo 'Exception: ',  $e->getMessage(), "\n";
24
+            echo 'Exception: ', $e->getMessage(), "\n";
25 25
         }
26 26
     }
27 27
 }
Please login to merge, or discard this patch.