ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Parallel.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Refinery\In;
22 
28 
29 class Parallel implements Transformation
30 {
33 
36 
41  public function __construct(array $transformations)
42  {
43  foreach ($transformations as $transformation) {
44  if (!$transformation instanceof Transformation) {
45  $transformationClassName = Transformation::class;
46 
48  sprintf('The array MUST contain only "%s" instances', $transformationClassName),
49  'not_a_transformation',
50  $transformationClassName
51  );
52  }
53  }
54  $this->transformationStrategies = $transformations;
55  }
56 
60  public function transform($from): array
61  {
62  $results = [];
63  foreach ($this->transformationStrategies as $strategy) {
64  $results[] = $strategy->transform($from);
65  }
66 
67  return $results;
68  }
69 }
__construct(array $transformations)
Definition: Parallel.php:41
$results
A transformation is a function from one datatype to another.