mirror of
https://github.com/cachethq/cachet.git
synced 2026-03-03 00:27:01 +00:00
26 lines
525 B
PHP
26 lines
525 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Bus\Events\Incident;
|
|
|
|
use CachetHQ\Cachet\Bus\Events\EventInterface;
|
|
|
|
/**
|
|
* This is the incident event interface.
|
|
*
|
|
* @author Graham Campbell <graham@alt-three.com>
|
|
* @author James Brooks <james@alt-three.com>
|
|
*/
|
|
interface IncidentEventInterface extends EventInterface
|
|
{
|
|
//
|
|
}
|