for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace hanneskod\readmetester\Runner;
use hanneskod\readmetester\Example\ExampleObj;
final class ErrorOutcome implements OutcomeInterface
{
use OutcomeDefaultsTrait;
public function __construct(
private ExampleObj $example,
private string $content,
) {}
public function isError(): bool
return true;
}
public function mustBeHandled(): bool
public function getContent(): string
return $this->content;
public function getDescription(): string
return $this->getContent();