| Total Complexity | 2 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class ProductStockStatusLanguageCollection |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * A list of product stock statuses |
||
| 9 | * |
||
| 10 | * @var ProductStockStatusLanguage[] |
||
| 11 | */ |
||
| 12 | protected $data; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * A list of product stock statuses |
||
| 16 | * |
||
| 17 | * @return ProductStockStatus[] |
||
| 18 | */ |
||
| 19 | public function getData(): array |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * A list of product stock statuses |
||
| 26 | * |
||
| 27 | * @param ProductStockStatusLanguage[] |
||
| 28 | * |
||
| 29 | * @return self |
||
| 30 | */ |
||
| 31 | public function setData(array $data): self |
||
| 38 |