19 declare(strict_types=1);
37 $result = $series->transform(
'hello');
39 $this->assertEquals(
'hello', $result);
49 $result = $series->applyTo(
new Ok(
'hello'));
51 $this->assertEquals(
'hello', $result->value());
56 $this->expectNotToPerformAssertions();
64 $result = $series->transform(42.0);
83 $result = $series->applyTo(
new Ok(42.0));
85 $this->assertTrue($result->isError());
90 $this->expectNotToPerformAssertions();
A result encapsulates a value or an error and simplifies the handling of those.