mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-27 06:04:12 +01:00
16 lines
307 B
PHP
16 lines
307 B
PHP
<?php
|
|
/*
|
|
* @copyright Copyright (C) 2010-2022 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
namespace Combodo\iTop\Service;
|
|
|
|
interface iEventEnrolment
|
|
{
|
|
/**
|
|
* Extension point to register the events and events listeners
|
|
* @return void
|
|
*/
|
|
public function InitEvents();
|
|
} |