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