SyncNormalizerDecoratorInterface.php in Content Synchronization 8.2
File
src/Plugin/SyncNormalizerDecoratorInterface.php
View source
<?php
namespace Drupal\content_sync\Plugin;
use Drupal\Component\Plugin\PluginInspectionInterface;
use Drupal\Core\Entity\ContentEntityInterface;
interface SyncNormalizerDecoratorInterface extends PluginInspectionInterface {
public function decorateNormalization(array &$normalized_entity, ContentEntityInterface $entity, $format, array $context = []);
public function decorateDenormalization(array &$normalized_entity, $type, $format, array $context = []);
public function decorateDenormalizedEntity(ContentEntityInterface $entity, array $normalized_entity, $format, array $context = []);
}