Files
cachet-docker/tests/Bus/Events/Beacon/AbstractBeaconEventTestCase.php
2016-08-04 11:06:27 +01:00

32 lines
706 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\Tests\Cachet\Bus\Events\Beacon;
use AltThree\TestBench\EventTrait;
use CachetHQ\Cachet\Bus\Events\Beacon\BeaconEventInterface;
use CachetHQ\Tests\Cachet\AbstractTestCase;
/**
* This is the abstract beacon event test case.
*
* @author James Brooks <james@alt-three.com>
*/
abstract class AbstractBeaconEventTestCase extends AbstractTestCase
{
use EventTrait;
protected function getEventInterfaces()
{
return [BeaconEventInterface::class];
}
}