Total Complexity | 1 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | abstract class AbstractMessage |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $content; |
||
18 | |||
19 | /** |
||
20 | * AbstractMessage constructor. |
||
21 | * @param string $content |
||
22 | */ |
||
23 | public function __construct(string $content) |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | abstract public function getContent(): string; |
||
32 | } |
||
33 |