13 lines
242 B
PHP
13 lines
242 B
PHP
|
<?php
|
||
|
|
||
|
namespace Doctrine\Bundle\DoctrineBundle\EventSubscriber;
|
||
|
|
||
|
use Doctrine\Common\EventSubscriber;
|
||
|
|
||
|
/**
|
||
|
* @deprecated use the {@see AsDoctrineListener} attribute instead
|
||
|
*/
|
||
|
interface EventSubscriberInterface extends EventSubscriber
|
||
|
{
|
||
|
}
|