| 1 | <?php |
||
| 5 | class NullJobFlightManager implements JobFlightManager |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * {@inheritdoc} |
||
| 9 | */ |
||
| 10 | public function departed(int $jobId, string $jobName, string $queue): void |
||
| 11 | { |
||
| 12 | |||
| 13 | } |
||
| 14 | |||
| 15 | /** |
||
| 16 | * {@inheritdoc} |
||
| 17 | */ |
||
| 18 | public function latestJobFlightOfJobId(int $jobId): ?JobFlight |
||
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | public function acknowledged(int $jobId): void |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | public function abandoned(int $jobId): void |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | 2 | public function requeued(string $jobId, string $requeuedJobId): void |
|
| 43 | { |
||
| 44 | |||
| 45 | 2 | } |
|
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritdoc} |
||
| 49 | */ |
||
| 50 | public function rejected(int $jobId): void |
||
| 54 | |||
| 55 | /** |
||
| 56 | * {@inheritdoc} |
||
| 57 | */ |
||
| 58 | public function letGo(int $jobId): void |
||
| 62 | } |