| Total Complexity | 4 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class ReplyCommand extends EventCommand |
||
| 12 | { |
||
| 13 | private $replyAggregator; |
||
| 14 | |||
| 15 | public function __construct(ReplyAggregator $replyAggregator) |
||
| 19 | } |
||
| 20 | |||
| 21 | protected function configure() |
||
| 22 | { |
||
| 23 | parent::configure(); |
||
| 24 | $this->setHidden(true); |
||
| 25 | } |
||
| 26 | |||
| 27 | protected function getEventName(): string |
||
| 28 | { |
||
| 29 | return 'reply'; |
||
| 30 | } |
||
| 31 | |||
| 32 | protected function executeEvent(?string $payload): ?string |
||
| 36 | } |
||
| 37 | } |
||
| 38 |