Completed
Push — master ( a4b70c...502c46 )
by Carlos
02:20
created
src/Console/PingCommand.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 namespace Workana\AsyncJobs\Console;
3 3
 
4 4
 use Symfony\Component\Console\Command\Command;
5
-use Symfony\Component\Console\Input\InputOption;
6 5
 use Symfony\Component\Console\Input\InputInterface;
6
+use Symfony\Component\Console\Input\InputOption;
7 7
 use Symfony\Component\Console\Output\OutputInterface;
8
-use Workana\AsyncJobs\Util\Ping;
9 8
 use Workana\AsyncJobs\AsyncAction;
10 9
 use Workana\AsyncJobs\JobManager;
10
+use Workana\AsyncJobs\Util\Ping;
11 11
 
12 12
 /**
13 13
  * Produces a ping
Please login to merge, or discard this patch.
src/Worker.php 1 patch
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,20 +1,20 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Workana\AsyncJobs;
3 3
 
4
-use Throwable;
5
-use Exception;
6 4
 use Bernard\Envelope;
7 5
 use Bernard\Queue;
8 6
 use Bernard\Router;
7
+use Exception;
9 8
 use Symfony\Component\EventDispatcher\EventDispatcherInterface;
10
-use Workana\AsyncJobs\Event\SuccessfulExecutionEvent;
11
-use Workana\AsyncJobs\Process\ProcessManager;
9
+use Throwable;
12 10
 use Workana\AsyncJobs\Event\AfterExecutionEvent;
13 11
 use Workana\AsyncJobs\Event\BeforeExecutionEvent;
14 12
 use Workana\AsyncJobs\Event\RejectedExecutionEvent;
13
+use Workana\AsyncJobs\Event\SuccessfulExecutionEvent;
15 14
 use Workana\AsyncJobs\Event\WorkerShutdownEvent;
16
-use Workana\AsyncJobs\Util\Sleeper;
15
+use Workana\AsyncJobs\Process\ProcessManager;
17 16
 use Workana\AsyncJobs\Retry\RetryStrategy;
17
+use Workana\AsyncJobs\Util\Sleeper;
18 18
 
19 19
 /**
20 20
  * Worker class
Please login to merge, or discard this patch.