1 | <?php |
||
11 | class DeprioritizeStrategy extends AbstractStrategy |
||
12 | { |
||
13 | /** |
||
14 | * @var MessagePublisherInterface |
||
15 | */ |
||
16 | protected $publisher; |
||
17 | |||
18 | /** |
||
19 | * @param MessagePublisherInterface $publisher |
||
20 | */ |
||
21 | 1 | public function __construct(MessagePublisherInterface $publisher) |
|
25 | |||
26 | /** |
||
27 | * @inheritdoc |
||
28 | */ |
||
29 | 1 | public function retry(EnvelopeInterface $envelope, $attempt, \Exception $exception = null) |
|
42 | } |
||
43 |