| 1 | <?php | ||
| 20 | final class Logger implements BasicInterface | ||
| 21 | { | ||
| 22 | private $basic; | ||
| 23 | private $logger; | ||
| 24 | |||
| 25 | 3 | public function __construct(BasicInterface $basic, LoggerInterface $logger) | |
| 30 | |||
| 31 | 1 | public function ack(Ack $command): BasicInterface | |
| 37 | |||
| 38 | 1 | public function cancel(Cancel $command): BasicInterface | |
| 44 | |||
| 45 | 1 | public function consume(Consume $command): Consumer | |
| 52 | |||
| 53 | 1 | public function get(GetCommand $command): Get | |
| 60 | |||
| 61 | 1 | public function publish(Publish $command): BasicInterface | |
| 67 | |||
| 68 | 1 | public function qos(Qos $command): BasicInterface | |
| 74 | |||
| 75 | 1 | public function recover(Recover $command): BasicInterface | |
| 81 | |||
| 82 | 1 | public function reject(Reject $command): BasicInterface | |
| 88 | } | ||
| 89 |