Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class RemoveBasketResponse implements ResponseInterface |
||
17 | { |
||
18 | /** |
||
19 | * Количество удаленных записей или 0 в случае, если ничего не удалено. |
||
20 | * |
||
21 | * @JMS\XmlAttribute() |
||
22 | * @JMS\Type("int") |
||
23 | */ |
||
24 | private int $removed; |
||
25 | |||
26 | /** |
||
27 | * @return int |
||
28 | */ |
||
29 | 1 | public function getRemoved(): int |
|
34 |