N°4756 - Ease extensibility for CRUD operations : Event Service - Moved Events source code under sources/application/events

This commit is contained in:
Eric Espie
2022-12-16 11:28:52 +01:00
parent fae857175b
commit 1b4a21fafa
7 changed files with 20 additions and 20 deletions

View File

@@ -0,0 +1,25 @@
<?php
/*
* @copyright Copyright (C) 2010-2022 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();
}