mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
25 lines
475 B
PHP
25 lines
475 B
PHP
<?php
|
|
/*
|
|
* @copyright Copyright (C) 2010-2023 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
namespace Combodo\iTop\Service\Events;
|
|
|
|
/**
|
|
* Interface to implement in order to register the events and listeners
|
|
*
|
|
* @api
|
|
* @package EventsAPI
|
|
* @since 3.1.0
|
|
*/
|
|
interface iEventServiceSetup
|
|
{
|
|
/**
|
|
* Extension point to register the events and events listeners
|
|
*
|
|
* @api
|
|
* @return void
|
|
*/
|
|
public function RegisterEventsAndListeners();
|
|
} |