16 lines
342 B
PHP
16 lines
342 B
PHP
<?php
|
|
namespace RocketTheme\Toolbox\Event;
|
|
|
|
use Symfony\Component\EventDispatcher\EventSubscriberInterface as BaseEventSubscriberInterface;
|
|
|
|
/**
|
|
* Defines EventSubscriberInterface.
|
|
*
|
|
* @package RocketTheme\Toolbox\Event
|
|
* @author RocketTheme
|
|
* @license MIT
|
|
*/
|
|
interface EventSubscriberInterface extends BaseEventSubscriberInterface
|
|
{
|
|
}
|