43 if (!is_array($from)) {
44 throw new \InvalidArgumentException(__METHOD__ .
" argument is not an array.");
47 if (count($from) != count($this->labels)) {
48 throw new \InvalidArgumentException(__METHOD__ .
" number of items in arrays are not equal.");
51 return array_combine($this->labels, $from);
59 $dataValue = $data->
value();
60 if (
false === is_array($dataValue)) {
61 $exception = new \InvalidArgumentException(__METHOD__ .
" argument is not an array.");
62 return $this->factory->error($exception);
65 if (count($dataValue) != count($this->labels)) {
66 $exception = new \InvalidArgumentException(__METHOD__ .
" number of items in arrays are not equal.");
67 return $this->factory->error($exception);
70 $value = array_combine($this->labels, $dataValue);
71 $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.
trait DeriveInvokeFromTransform
__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...