Files
iTop/sources/Application/Service/iEventServiceSetup.php

21 lines
425 B
PHP

<?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();
}