<?php

namespace Symfony\Component\EventDispatcher;

interface EventSubscriberInterface
{
    /**
     * @return array<string, string|array<string, int>|array<int, string|array<string, int>|array<int, string>>>
     */
    public static function getSubscribedEvents();
}
