| 1 | <?php |
||
| 9 | final class RelationAwareProcessorDecorator implements EntityProcessorInterface |
||
| 10 | { |
||
| 11 | /** @var ManagerRegistry */ |
||
| 12 | private $registry; |
||
| 13 | /** @var EntityProcessorInterface */ |
||
| 14 | private $processor; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * RelationAwareProcessorDecorator constructor. |
||
| 18 | * |
||
| 19 | * @param EntityProcessorInterface $processor |
||
| 20 | * @param ManagerRegistry $registry |
||
| 21 | */ |
||
| 22 | 6 | public function __construct(EntityProcessorInterface $processor, ManagerRegistry $registry) |
|
| 27 | |||
| 28 | /** {@inheritdoc} */ |
||
| 29 | 6 | public function updateEntity($entity, $data) |
|
| 57 | } |
||
| 58 |