Files
Chamilo/plugin/externalnotificationconnect/src/Hook/ExternalNotificationConnectHookObserver.php
2025-08-14 22:39:38 +02:00

22 lines
511 B
PHP

<?php
/* For licensing terms, see /license.txt */
abstract class ExternalNotificationConnectHookObserver extends HookObserver
{
/**
* @var ExternalNotificationConnectPlugin
*/
protected $plugin;
protected function __construct()
{
parent::__construct(
'plugin/externalnotificationconnect/src/ExternalNotificationConnectPlugin.php',
'externalnotificationconnect'
);
$this->plugin = ExternalNotificationConnectPlugin::create();
}
}