2 declare(strict_types=1);
32 foreach ($transformations as $transformation) {
34 $transformationClassName = Transformation::class;
37 sprintf(
'The array MUST contain only "%s" instances', $transformationClassName),
38 'not_a_transformation',
39 $transformationClassName
43 $this->transformationStrategies = $transformations;
52 foreach ($this->transformationStrategies as $strategy) {
53 $results[] = $strategy->transform($from);
$transformationStrategies
trait DeriveApplyToFromTransform
trait DeriveInvokeFromTransform
__construct(array $transformations)
transform($from)
Perform the transformation.Please use this for transformations. It's more performant than calling inv...