Total Complexity | 7 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class ReportConfigurationTransport implements ReportConfigurationTransportInterface |
||
8 | { |
||
9 | /** @var int */ |
||
10 | protected $id; |
||
11 | |||
12 | /** @var string|null */ |
||
13 | protected $type; |
||
14 | |||
15 | /** @var array */ |
||
16 | protected $configuration = []; |
||
17 | |||
18 | /** @var ReportConfigurationInterface|null */ |
||
19 | protected $reportConfiguration; |
||
20 | |||
21 | public function getId(): ?int |
||
22 | { |
||
23 | return $this->id; |
||
24 | } |
||
25 | |||
26 | public function getType(): ?string |
||
29 | } |
||
30 | |||
31 | public function setType(?string $type): void |
||
34 | } |
||
35 | |||
36 | public function getConfiguration(): array |
||
37 | { |
||
38 | return $this->configuration; |
||
39 | } |
||
40 | |||
41 | public function setConfiguration(array $configuration): void |
||
42 | { |
||
43 | $this->configuration = $configuration; |
||
44 | } |
||
45 | |||
46 | public function getReportConfiguration(): ?ReportConfigurationInterface |
||
49 | } |
||
50 | |||
51 | public function setReportConfiguration(?ReportConfigurationInterface $reportConfiguration): void |
||
54 | } |
||
55 | } |
||
56 |