24 lines
535 B
PHP
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];
|
|
}
|
|
}
|