19 declare(strict_types=1);
85 $this->data_factory = $data_factory;
109 $clone = clone $this;
134 $clone = clone $this;
135 $clone->setError($error);
152 $clone = clone $this;
153 $clone->setAdditionalTransformation($trafo);
165 $this->operations[] = $trafo;
166 if ($this->content !== null) {
167 if (!$this->content->isError()) {
168 $this->content = $trafo->
applyTo($this->content);
170 if ($this->content->isError()) {
171 $this->
setError($this->content->error());
181 return $this->dedicated_name;
189 $clone = clone $this;
190 $clone->dedicated_name = $dedicated_name;
207 $clone = clone $this;
211 $clone->name = ($parent_name !== null) ? $parent_name .
'/' :
'';
213 $clone->name .= ($clone->dedicated_name !== null)
214 ? $source->getNewDedicatedName($clone->dedicated_name)
227 if ($this->
getName() === null) {
228 throw new LogicException(
"Can only collect if input has a name.");
243 if ($clone->content->isError()) {
244 $error = $clone->content->error();
246 $error = $error->getMessage();
248 return $clone->withError(
"" . $error);
261 $res = $this->data_factory->ok(
$res);
263 if (
$res->isError()) {
279 foreach ($this->operations as $op) {
289 if (is_null($this->content)) {
290 throw new LogicException(
"No content of this field has been evaluated yet. Seems withRequest was not called.");
292 return $this->content;
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
A result encapsulates a value or an error and simplifies the handling of those.
Refinery Factory $refinery