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