Completed
Push — master ( 3eebf6...0c0dcf )
by Bernhard
01:47 queued 10s
created
src/DotEnvConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public function __construct($path = '.')
20 20
     {
21
-        parent::__construct(realpath(__DIR__ . '/../'));
21
+        parent::__construct(realpath(__DIR__.'/../'));
22 22
     }
23 23
 
24 24
     public function setJiraPassword($value) {
Please login to merge, or discard this patch.
src/Command/Push.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -213,8 +213,8 @@
 block discarded – undo
213 213
             return '';
214 214
         }
215 215
         $command = "/usr/bin/env bash -c 'read -s -p \""
216
-                   . addslashes($prompt)
217
-                   . "\" mypassword && echo \$mypassword'";
216
+                    . addslashes($prompt)
217
+                    . "\" mypassword && echo \$mypassword'";
218 218
         $password = rtrim(shell_exec($command));
219 219
         $output->writeln('');
220 220
         return $password;
Please login to merge, or discard this patch.