Move Event service from sources/Application/Service to sources/Service

This commit is contained in:
Eric Espie
2023-04-05 10:48:20 +02:00
parent 1c2cf116da
commit f91259695a
11 changed files with 16 additions and 16 deletions

View File

@@ -0,0 +1,15 @@
<?php
/*
* @copyright Copyright (C) 2010-2023 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Service\Events;
use IssueLog;
use LogChannels;
class EventServiceLog extends IssueLog
{
const CHANNEL_DEFAULT = LogChannels::EVENT_SERVICE;
}