2 declare(strict_types=1);
29 foreach ($transformations as $transformation) {
31 $transformationClassName = Transformation::class;
34 sprintf(
'The array MUST contain only "%s" instances', $transformationClassName),
35 'not_a_transformation',
36 $transformationClassName
52 foreach ($from as $key => $value) {
53 if (
false === array_key_exists($key, $this->transformations)) {
56 'There is no entry "%s" defined in the transformation array',
59 'values_do_not_match',
63 $transformedValue = $this->transformations[$key]->transform($value);
84 $countOfValues = count($values);
85 $countOfTransformations = count($this->transformations);
87 if ($countOfValues !== $countOfTransformations) {
90 'The given values(count: "%s") does not match with the given transformations("%s")',
92 $countOfTransformations
96 $countOfTransformations
trait DeriveApplyToFromTransform