| Total Complexity | 6 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class InventoryActionBuilder |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @return InventorySetExpectedDeliveryAction |
||
| 16 | */ |
||
| 17 | public function setExpectedDelivery() |
||
| 18 | { |
||
| 19 | return InventorySetExpectedDeliveryAction::of(); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return InventoryAddQuantityAction |
||
| 24 | */ |
||
| 25 | public function addQuantity() |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return InventoryChangeQuantityAction |
||
| 32 | */ |
||
| 33 | public function changeQuantity() |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return InventorySetSupplyChannelAction |
||
| 40 | */ |
||
| 41 | public function setSupplyChannel() |
||
| 42 | { |
||
| 43 | return InventorySetSupplyChannelAction::of(); |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return InventorySetRestockableInDaysAction |
||
| 48 | */ |
||
| 49 | public function setRestockableInDays() |
||
| 50 | { |
||
| 51 | return InventorySetRestockableInDaysAction::of(); |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @return InventoryRemoveQuantityAction |
||
| 56 | */ |
||
| 57 | public function removeQuantity() |
||
| 60 | } |
||
| 61 | } |
||
| 62 |