1 | <?php |
||
18 | final class RetryHandler implements HandlerInterface |
||
19 | { |
||
20 | /** @var ProducerInterface */ |
||
21 | private $producer; |
||
22 | |||
23 | /** |
||
24 | * RatesCollector constructor. |
||
25 | * |
||
26 | * @param ProducerInterface $producer |
||
27 | */ |
||
28 | public function __construct(ProducerInterface $producer) |
||
32 | |||
33 | /** |
||
34 | * @param Webhook $webhook |
||
35 | * |
||
36 | * @return void |
||
37 | */ |
||
38 | public function handle(Webhook $webhook) |
||
49 | } |