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
40 $this->transformationStrategies = $transformations;
49 foreach ($this->transformationStrategies as $strategy) {
__invoke($from)
Transformations should be callable.This MUST do the same as transform.
__construct(array $transformations)
trait DeriveApplyToFromTransform
$transformationStrategies
transform($from)
Perform the transformation.Please use this for transformations. It's more performant than calling inv...