'yes', ]; public function __construct() { parent::__construct(self::APP_ID); } #[\Override] public function register(IRegistrationContext $context): void { $context->registerCapability(Capabilities::class); $context->registerEventListener(LoadAdditionalScriptsEvent::class, LoadContactsFilesActions::class); $context->registerEventListener(LoadContactsOcaApiEvent::class, LoadContactsOcaApi::class); } #[\Override] public function boot(IBootContext $context): void { $appContainer = $context->getAppContainer(); $serverContainer = $context->getServerContainer(); /** @var IEventDispatcher $eventDispatcher */ $eventDispatcher = $serverContainer->get(IEventDispatcher::class); $eventDispatcher->addListener(SabrePluginAddEvent::class, static function (SabrePluginAddEvent $event) use ($appContainer) { // We have to register the PatchPlugin here and not info.xml, // because info.xml plugins are loaded, after the // beforeMethod:* hook has already been emitted. $event->getServer()->addPlugin($appContainer->get(PatchPlugin::class)); }); } }