Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
27 | class DestinationServicesResponse |
||
28 | { |
||
29 | /** |
||
30 | * @var ArrayCollection |
||
31 | * @Serializer\Type("ArrayCollection") |
||
32 | */ |
||
33 | private ArrayCollection $services; |
||
34 | |||
35 | public function __construct() |
||
36 | { |
||
37 | $this->services = new ArrayCollection(); |
||
38 | } |
||
39 | |||
40 | /** |
||
41 | * @param ArrayCollection $services |
||
42 | */ |
||
43 | public function setServices(ArrayCollection $services): void |
||
46 | } |
||
47 | |||
48 | /** |
||
49 | * @return ArrayCollection |
||
50 | */ |
||
51 | public function getServices(): ArrayCollection |
||
57 |