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;
final class ErrorOutcome implements OutcomeInterface
{
/** @var string */
private $message;
public function __construct(string $message)
$this->message = $message;
}
public function getType(): string
return self::TYPE_ERROR;
public function mustBeHandled(): bool
return true;
public function getContent(): string
return $this->message;
public function getDescription(): string