| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Message\Handler\Typo3;
- use App\Message\Message\Typo3\Typo3Delete;
- use App\Service\Typo3\Typo3Service;
- use Symfony\Component\Messenger\Attribute\AsMessageHandler;
- #[AsMessageHandler(priority: 1)]
- class Typo3DeleteHandler
- {
- public function __construct(
- private Typo3Service $typo3Service,
- ) {
- }
- /**
- * @throws \Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface
- */
- public function __invoke(Typo3Delete $command): void
- {
- $this->typo3Service->deleteSite($command->getOrganizationId());
- }
- }
|