| 1 | <?php |
||
| 21 | class EventClassMetadataFactory implements ClassMetadataFactoryInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var ClassMetadataFactoryInterface |
||
| 25 | */ |
||
| 26 | private $factory; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var EventDispatcherInterface |
||
| 30 | */ |
||
| 31 | private $dispatcher; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param ClassMetadataFactoryInterface $factory |
||
| 35 | * @param EventDispatcherInterface $dispatcher |
||
| 36 | */ |
||
| 37 | public function __construct(ClassMetadataFactoryInterface $factory, EventDispatcherInterface $dispatcher) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | public function getClassMetadata($class) |
||
| 59 | } |
||
| 60 |