19 declare(strict_types=1);
56 if (!is_array($from)) {
60 if (count($from) !== count($this->labels)) {
64 return array_combine($this->labels, $from);
72 $dataValue = $result->
value();
73 if (
false === is_array($dataValue)) {
75 return $this->
factory->error($exception);
78 if (count($dataValue) !== count($this->labels)) {
80 return $this->
factory->error($exception);
83 $value = array_combine($this->labels, $dataValue);
84 $result = $this->
factory->ok($value);
value()
Get the encapsulated value.
trait DeriveInvokeFromTransform
Adds to any array keys for each value.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(array $labels, Factory $factory)