1 | <?php |
||
14 | final class InvoiceSettings implements CreatableFromArray |
||
15 | { |
||
16 | /** |
||
17 | * @var array |
||
18 | */ |
||
19 | private $customFields; |
||
20 | |||
21 | /** |
||
22 | * @var ?string |
||
23 | */ |
||
24 | private $footer; |
||
25 | |||
26 | 5 | private function __construct() |
|
29 | |||
30 | 5 | public static function createFromArray(array $data): self |
|
45 | |||
46 | 1 | public function getCustomFields(): array |
|
50 | |||
51 | 1 | public function getFooter(): ?string |
|
55 | } |
||
56 |