| 1 | <?php |
||
| 6 | class TldrPage |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @var String |
||
| 10 | */ |
||
| 11 | private $name; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var String |
||
| 15 | */ |
||
| 16 | private $platform; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var String |
||
| 20 | */ |
||
| 21 | private $content; |
||
| 22 | |||
| 23 | public function __construct(String $name, String $platform, String $content) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return String |
||
| 32 | */ |
||
| 33 | public function getName() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return String |
||
| 40 | */ |
||
| 41 | public function getPlatform() |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return String |
||
| 48 | */ |
||
| 49 | public function getContent() |
||
| 53 | } |
||
| 54 |