for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace GarethEllis\Tldr\Page;
class TldrPage
{
/**
* @var String
*/
private $name;
private $os;
private $content;
public function __construct(String $name, String $os, String $content)
$this->name = $name;
$this->os = $os;
$this->content = $content;
}
* @return String
public function getName()
return $this->name;
public function getOs()
return $this->os;
public function getContent()
return $this->content;