for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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();
}