@@ -25,7 +25,6 @@ |
||
25 | 25 | /** |
26 | 26 | * RunJobCommand constructor. |
27 | 27 | * |
28 | - * @param LoggerInterface $logger |
|
29 | 28 | * @param Worker $worker |
30 | 29 | */ |
31 | 30 | public function __construct(Worker $worker) |
@@ -35,7 +35,6 @@ |
||
35 | 35 | * RetryCommand constructor. |
36 | 36 | * |
37 | 37 | * @param JobQueue $queue |
38 | - * @param MongoDriverInterface $mongoDriver |
|
39 | 38 | */ |
40 | 39 | public function __construct(JobQueue $queue, FailedJobProviderInterface $failer) |
41 | 40 | { |
@@ -23,8 +23,6 @@ discard block |
||
23 | 23 | /** |
24 | 24 | * JobQueue constructor. |
25 | 25 | * |
26 | - * @param ContainerInterface $container |
|
27 | - * @param array $connections |
|
28 | 26 | * |
29 | 27 | * @internal param array $config |
30 | 28 | */ |
@@ -89,7 +87,7 @@ discard block |
||
89 | 87 | /** |
90 | 88 | * Push a new job onto the queue after a delay. |
91 | 89 | * |
92 | - * @param \DateTime|int $delay |
|
90 | + * @param integer $delay |
|
93 | 91 | * @param string $job |
94 | 92 | * @param mixed $data |
95 | 93 | * @param string $queue |
@@ -105,7 +103,7 @@ discard block |
||
105 | 103 | /** |
106 | 104 | * Push a new job into the queue after a delay if job does not exist. |
107 | 105 | * |
108 | - * @param \DateTime|int $delay |
|
106 | + * @param integer $delay |
|
109 | 107 | * @param string $job |
110 | 108 | * @param mixed $data |
111 | 109 | * @param string $queue |
@@ -70,7 +70,6 @@ |
||
70 | 70 | /** |
71 | 71 | * Worker constructor. |
72 | 72 | * |
73 | - * @param QueueInterface $queue |
|
74 | 73 | * @param JobProcess $process |
75 | 74 | * @param FailedJobProviderInterface $failer |
76 | 75 | * @param ExceptionHandlerInterface $exceptions |
@@ -43,7 +43,6 @@ |
||
43 | 43 | * @param string $connectionName |
44 | 44 | * @param JobContractInterface $job |
45 | 45 | * @param Exception $exception |
46 | - * @param array $config |
|
47 | 46 | */ |
48 | 47 | public function __construct(string $connectionName, JobContractInterface $job, Exception $exception) |
49 | 48 | { |
@@ -34,7 +34,6 @@ |
||
34 | 34 | * |
35 | 35 | * @param string $connectionName |
36 | 36 | * @param JobContractInterface $job |
37 | - * @param array $config |
|
38 | 37 | */ |
39 | 38 | public function __construct(string $connectionName, JobContractInterface $job) |
40 | 39 | { |
@@ -34,7 +34,6 @@ |
||
34 | 34 | * |
35 | 35 | * @param string $connectionName |
36 | 36 | * @param JobContractInterface $job |
37 | - * @param array $config |
|
38 | 37 | */ |
39 | 38 | public function __construct(string $connectionName, JobContractInterface $job) |
40 | 39 | { |
@@ -89,7 +89,7 @@ |
||
89 | 89 | * |
90 | 90 | * @param JobResolverInterface $resolver |
91 | 91 | * @param QueueInterface $database |
92 | - * @param StdClass|MongoDB\Model\BSONDocument $job |
|
92 | + * @param Job $job |
|
93 | 93 | */ |
94 | 94 | public function __construct(JobResolverInterface $resolver, QueueInterface $database, Job $job) |
95 | 95 | { |
@@ -141,7 +141,6 @@ |
||
141 | 141 | /** |
142 | 142 | * Mock mongo job contract |
143 | 143 | * |
144 | - * @param Job $job |
|
145 | 144 | * @param JobInterface|null $jobInstance |
146 | 145 | * |
147 | 146 | * @return JobContract |