SyncNormalizerDecoratorBase.php in Content Synchronization 8.2
File
src/Plugin/SyncNormalizerDecoratorBase.php
View source
<?php
namespace Drupal\content_sync\Plugin;
use Drupal\Component\Plugin\PluginBase;
use Drupal\Core\Entity\ContentEntityInterface;
abstract class SyncNormalizerDecoratorBase extends PluginBase implements SyncNormalizerDecoratorInterface {
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 = []) {
}
}