for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace NamespaceProtector\Result;
class ResultProcessor implements ResultProcessorInterface
{
/** @var array */
private $lines;
/** @var ResultCollectorReadable */
private $resultCollectorReadable;
public function __construct(array $lines, ResultCollectorReadable $resultCollectorReadable)
$this->lines = $lines;
$this->resultCollectorReadable = $resultCollectorReadable;
}
public function getOutputLines(): array
return $this->lines;
public function getResultCollectionReadable(): ResultCollectorReadable
return $this->resultCollectorReadable;