Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SkuListInStock.php
Go to the documentation of this file.
1 <?php
6 declare(strict_types=1);
7 
9 
14 {
18  private $stockId;
19 
23  private $skuList;
24 
28  public function getStockId(): int
29  {
30  return $this->stockId;
31  }
32 
37  public function setStockId(int $stockId)
38  {
39  $this->stockId = $stockId;
40  }
41 
45  public function getSkuList(): array
46  {
47  return $this->skuList;
48  }
49 
54  public function setSkuList(array $skuList)
55  {
56  $this->skuList = $skuList;
57  }
58 }