Skip to content

Latest commit

 

History

History
66 lines (32 loc) · 1.78 KB

PluginInterface.md

File metadata and controls

66 lines (32 loc) · 1.78 KB

BumbleDocGen / Technical description of the project / Class map / PluginInterface


namespace BumbleDocGen\Core\Plugin;

interface PluginInterface extends \\Symfony\Component\EventDispatcher\EventSubscriberInterface implements \Symfony\Component\EventDispatcher\EventSubscriberInterface

Methods:

  1. getSubscribedEvents - Returns an array of event names this subscriber wants to listen to.

Method details:

// Implemented in Symfony\Component\EventDispatcher\EventSubscriberInterface

public static function getSubscribedEvents(): array<string,string|array{0:string,1:int}|list<array{0:string,1?:int}>>;
Returns an array of event names this subscriber wants to listen to.

Parameters: not specified

Return value: array<string,string | array{0:string,1:int} | list<array{0:string,1?:int}>>