Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class NewsletterList |
||
6 | { |
||
7 | /** @var string */ |
||
8 | public $name; |
||
9 | |||
10 | /** @var array */ |
||
11 | public $properties = []; |
||
12 | |||
13 | public function __construct(string $name, array $properties) |
||
14 | { |
||
15 | $this->name = $name; |
||
16 | $this->properties = $properties; |
||
17 | } |
||
18 | |||
19 | public function getId(): string |
||
22 | } |
||
23 | |||
24 | public function getName(): string |
||
29 |