SymfonyComponentEventDispatcherEventSubscriberInterface와 getSubscribedEvents() 메소드를 좋아하시나요?
class AwesomeSubscriber implements Symfony\Component\EventDispatcher\EventSubscriberInterface { public static function getSubscribedEvents(): array { return [ HappyEvent::class => 'happy', CoolEvent::class => 'coll', ]; } public function happy(HappyEvent $event): void {} public function coll(CoolEvent $event): void {} }
싫어!
예, 새로운 Symfony에는 #[AsEventListener] 속성이 있습니다. 하지만 다른 프레임워크나 이전 버전의 이벤트 디스패처를 사용하거나 속성이 마음에 들지 않으면 어떻게 됩니까?
간단한 해결책이 있나요?
이 특성은 https://github.com/Zarganwar/symfony-event-dispatcher-utils에서 확인하세요.
이는 __invoke 메소드에 대한 이벤트를 구독하는 간단한(자동) 방법을 제공합니다.
class AwesomeSubscriber implements Symfony\Component\EventDispatcher\EventSubscriberInterface { use AutoEventSubscriberTrait; // <<<--- This is it! ❤️ public function __invoke(HappyEvent|AnotherEvent $event): void {} }
또는 SRP 이벤트당 구독자 수
class HappySubscriber implements Symfony\Component\EventDispatcher\EventSubscriberInterface { use AutoEventSubscriberTrait; public function __invoke(HappyEvent $event): void {} } class CoolSubscriber implements Symfony\Component\EventDispatcher\EventSubscriberInterface { use AutoEventSubscriberTrait; public function __invoke(CoolEvent $event): void {} }
물론 인터페이스와 공용체 유형을 사용할 수 있습니다.
https://github.com/Zarganwar/symfony-event-dispatcher-utils로 이동하여 설치
작곡가에는 zarganwar/symfony-event-dispatcher-utils가 필요합니다
즐기세요! ?
위 내용은 간단한 특성을 사용하여 Symfony\\Component\\EventDispatcher\\EventSubscriberInterface::getSubscribedEvents() 자동화의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!