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