ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MapValues.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Refinery\Container;
22 
27 
31 class MapValues implements Transformation
32 {
35 
36  protected string $type;
38 
39  public function __construct(Transformation $trafo)
40  {
41  $this->trafo = $trafo;
42  }
43 
47  public function transform($from): array
48  {
49  if (!is_array($from)) {
50  throw new InvalidArgumentException(__METHOD__ . " argument is not an array.");
51  }
52 
53  return array_map(function ($a) {
54  return $this->trafo->transform($a);
55  }, $from);
56  }
57 }
A transformation is a function from one datatype to another.
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples