10 lines
167 B
PHP
10 lines
167 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Doctrine\Bundle\DoctrineBundle\EventSubscriber;
|
||
|
|
|
||
|
|
use Doctrine\Common\EventSubscriber;
|
||
|
|
|
||
|
|
interface EventSubscriberInterface extends EventSubscriber
|
||
|
|
{
|
||
|
|
}
|