Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | abstract class AbstractMessage |
||
17 | { |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $content; |
||
23 | |||
24 | /** |
||
25 | * AbstractMessage constructor. |
||
26 | * @param string $content |
||
27 | */ |
||
28 | public function __construct(string $content) |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | abstract public function getContent(): string; |
||
37 | } |
||
38 |