| Total Complexity | 3 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 42.86% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | abstract class AbstractListener extends AbstractBusinessPlugin implements ListenerInterface |
||
| 13 | { |
||
| 14 | protected const DEFAULT_CHUNKSIZE = 100; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @return int |
||
| 18 | */ |
||
| 19 | public function getChunkSize() : int |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param \PhpAmqpLib\Channel\AMQPChannel $channel |
||
| 26 | * @param \DataProvider\RabbitMqMessageDataProvider $messageDataProvider |
||
| 27 | */ |
||
| 28 | 2 | public function sendAck( |
|
| 35 | 2 | } |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @param \PhpAmqpLib\Channel\AMQPChannel $channel |
||
| 39 | * @param \DataProvider\RabbitMqMessageDataProvider $messageDataProvider |
||
| 40 | */ |
||
| 41 | public function sendNack( |
||
| 49 | } |
||
| 50 | } |