Files
cachet-docker/tests/Events/User/AbstractUserEventTestCase.php
2015-09-14 08:47:51 +01:00

24 lines
535 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\Events\User;
use CachetHQ\Cachet\Events\User\UserEventInterface;
use CachetHQ\Tests\Cachet\Events\AbstractEventTestCase;
class AbstractUserEventTestCase extends AbstractEventTestCase
{
protected function getEventInterfaces()
{
return [UserEventInterface::class];
}
}