mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
17 lines
298 B
PHP
17 lines
298 B
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
namespace Combodo\iTop\Service\Events;
|
|
|
|
use IssueLog;
|
|
use LogChannels;
|
|
|
|
class EventServiceLog extends IssueLog
|
|
{
|
|
public const CHANNEL_DEFAULT = LogChannels::EVENT_SERVICE;
|
|
}
|