You are here

public function NormalizerWrapper::__call in Acquia Content Hub 8

Call for content entity cdf normalizer.

Parameters

mixed $name: Name for the cdf normalizer.

mixed $arguments: Arguments for the cdf normalizer.

Return value

mixed Returns the normalized name for the entity.

File

src/Normalizer/NormalizerWrapper.php, line 40

Class

NormalizerWrapper
Wrapper for the normalizer.

Namespace

Drupal\acquia_contenthub\Normalizer

Code

public function __call($name, $arguments) {
  return $this->contentEntityCdfNormalizer
    ->{$name}(...$arguments);
}