N°4756 - Ease extensibility for CRUD operations : Event Service - renamed service setup interface

This commit is contained in:
Eric Espie
2022-12-13 10:19:25 +01:00
parent baaa4474f9
commit 22749caeb4
5 changed files with 26 additions and 13 deletions

View File

@@ -0,0 +1,21 @@
<?php
/*
* @copyright Copyright (C) 2010-2022 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Service;
/**
* Interface to implement in order to register the events and listeners
*
* @since 3.1.0
*/
interface iEventServiceSetup
{
/**
* Extension point to register the events and events listeners
* @return void
*/
public function RegisterEventsAndListeners();
}