| 1 | <?php |
||
| 7 | class Line implements PrintableContentInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $content; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Line constructor. |
||
| 16 | * @param string $content |
||
| 17 | */ |
||
| 18 | public function __construct(string $content) |
||
| 22 | |||
| 23 | public function getContent(): string |
||
| 27 | |||
| 28 | public function __toString() |
||
| 32 | } |
||
| 33 |