for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LazyEight\DiTesto;
use LazyEight\DiTesto\Interfaces\TextFile\LineInterface;
class Line implements LineInterface
{
/**
* @var string
*/
private $content;
* Line constructor.
* @param string $content
public function __construct(string $content)
$this->content = $content;
}
public function getContent(): string
return $this->content;
public function __toString()
return $this->getContent();