| 1 | <?php |
||
| 12 | abstract class CommandHandler |
||
| 13 | { |
||
| 14 | protected $driver; |
||
| 15 | |||
| 16 | 2 | public function __construct(Driver $driver) |
|
| 20 | |||
| 21 | abstract public function handleSendMessage(SendMessage $command): void; |
||
| 22 | |||
| 23 | abstract public function handleSendAttachment(SendAttachment $command): void; |
||
| 24 | |||
| 25 | abstract public function handleSendRequest(SendRequest $command): void; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param Command $command |
||
| 29 | * |
||
| 30 | * @throws RuntimeException |
||
| 31 | */ |
||
| 32 | 2 | public function handle(Command $command): void |
|
| 42 | } |
||
| 43 |