Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php declare(strict_types = 1); |
||
9 | final class Producer |
||
10 | { |
||
11 | /** |
||
12 | * @var BunnyManager |
||
13 | */ |
||
14 | private $bunnyManager; |
||
15 | |||
16 | |||
17 | public function __construct(BunnyManager $bunnyManager) |
||
20 | } |
||
21 | |||
22 | |||
23 | /** |
||
24 | * @param mixed $body |
||
25 | * @return bool|int|PromiseInterface |
||
26 | */ |
||
27 | public function produce(AbstractProducer $abstractProducer, $body) |
||
41 |