Completed
Push — master ( c89a2f...81035f )
by Bernhard
01:32
created
src/Command/Track.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 use Symfony\Component\Console\Command\Command;
23 23
 use Symfony\Component\Console\Input\InputArgument;
24 24
 use Symfony\Component\Console\Input\InputInterface;
25
-use Symfony\Component\Console\Input\InputOption;
26 25
 use Symfony\Component\Console\Output\OutputInterface;
27 26
 use Wicked\Timely\Entities\Booking;
28 27
 use Wicked\Timely\Storage\StorageFactory;
Please login to merge, or discard this patch.
src/Command/Show.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -20,9 +20,7 @@
 block discarded – undo
20 20
 namespace Wicked\Timely\Command;
21 21
 
22 22
 use Symfony\Component\Console\Command\Command;
23
-use Symfony\Component\Console\Input\InputArgument;
24 23
 use Symfony\Component\Console\Input\InputInterface;
25
-use Symfony\Component\Console\Input\InputOption;
26 24
 use Symfony\Component\Console\Output\OutputInterface;
27 25
 use Wicked\Timely\Storage\StorageFactory;
28 26
 use Wicked\Timely\Formatter\FormatterFactory;
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.