ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
MapValues.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 namespace ILIAS\Refinery\Container;
22 
28 
32 class MapValues implements Transformation
33 {
36 
37  protected string $type;
39 
40  public function __construct(Transformation $trafo)
41  {
42  $this->trafo = $trafo;
43  }
44 
48  public function transform($from): array
49  {
50  if (!is_array($from)) {
51  throw new InvalidArgumentException(__METHOD__ . " argument is not an array.");
52  }
53 
54  return array_map(function ($a) {
55  return $this->trafo->transform($a);
56  }, $from);
57  }
58 }
__construct(Transformation $trafo)
Definition: MapValues.php:40
Adds to any array keys for each value.
Definition: MapValues.php:32
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: AddLabels.php:21
A transformation is a function from one datatype to another.
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples