typeResolver = $typeResolver; $this->hydratorPool = $hydratorPool; $this->attributePool = $attributePool; } /** * @param object $entity * @param array $arguments * @return object */ public function execute($entity, $arguments = []) { $entityType = $this->typeResolver->resolve($entity); $hydrator = $this->hydratorPool->getHydrator($entityType); $entityData = array_merge($hydrator->extract($entity), $arguments); $actions = $this->attributePool->getActions($entityType, 'update'); foreach ($actions as $action) { $entityData = $action->execute($entityType, $entityData, $arguments); } $entity = $hydrator->hydrate($entity, $entityData); return $entity; } }