40 if (!is_array($from)) {
41 throw new \InvalidArgumentException(__METHOD__ .
" argument is not an array.");
44 if (count($from) != count($this->labels)) {
45 throw new \InvalidArgumentException(__METHOD__ .
" number of items in arrays are not equal.");
48 return array_combine($this->labels, $from);
64 $dataValue = $data->
value();
65 if (
false === is_array($dataValue)) {
66 $exception = new \InvalidArgumentException(__METHOD__ .
" argument is not an array.");
67 return $this->factory->error($exception);
70 if (count($dataValue) != count($this->labels)) {
71 $exception = new \InvalidArgumentException(__METHOD__ .
" number of items in arrays are not equal.");
72 return $this->factory->error($exception);
75 $value = array_combine($this->labels, $dataValue);
76 $result = $this->factory->ok($value);
value()
Get the encapsulated value.
A result encapsulates a value or an error and simplifies the handling of those.
Adds to any array keys for each value.
__invoke($from)
Transformations should be callable.This MUST do the same as transform.
__construct(array $labels, Factory $factory)
transform($from)
Perform the transformation.Please use this for transformations. It's more performant than calling inv...
applyTo(Result $data)
Perform the transformation and reify possible failures.If $data->isError(), the method MUST do nothin...