src/Service/ServiceEventManager.php line 19
<?phpnamespace App\Service;use App\Event\ServiceAddedOrUpdatedEvent;use Symfony\Component\EventDispatcher\EventSubscriberInterface;class ServiceEventManager implements EventSubscriberInterface{public static function getSubscribedEvents(){return [ServiceAddedOrUpdatedEvent::class => 'onServiceAddedOrUpdated',];}public function onServiceAddedOrUpdated(ServiceAddedOrUpdatedEvent $event){}}