Skip to content

Commit 7d06ea6

Browse files
authored
Merge pull request magento#1084 from magento-engcom/fix-naming-in-reservations-api-module
Fix naming in InventoryReservationsApi module
2 parents 710f67e + ae12cdc commit 7d06ea6

27 files changed

+39
-39
lines changed

app/code/Magento/InventoryReservations/Cron/CleanupReservations.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace Magento\InventoryReservations\Cron;
99

10-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
10+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
1111

1212
/**
1313
* Cron job precessing of reservations cleanup

app/code/Magento/InventoryReservations/Model/ResourceModel/CleanupReservations.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
use Magento\Framework\App\ResourceConnection;
1111
use Magento\InventoryReservationsApi\Api\Data\ReservationInterface;
12-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
12+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
1313

1414
/**
1515
* @inheritdoc

app/code/Magento/InventoryReservations/Model/ResourceModel/GetReservationsQuantity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
use Magento\Framework\App\ResourceConnection;
1111
use Magento\InventoryReservationsApi\Api\Data\ReservationInterface;
12-
use Magento\InventoryReservationsApi\Module\GetReservationsQuantityInterface;
12+
use Magento\InventoryReservationsApi\Model\GetReservationsQuantityInterface;
1313

1414
/**
1515
* @inheritdoc

app/code/Magento/InventoryReservations/etc/di.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<preference for="Magento\InventoryReservationsApi\Api\AppendReservationsInterface" type="Magento\InventoryReservations\Model\AppendReservations"/>
1010
<preference for="Magento\InventoryReservationsApi\Api\Data\ReservationInterface" type="Magento\InventoryReservations\Model\Reservation"/>
1111
<preference for="Magento\InventoryReservationsApi\Api\ReservationBuilderInterface" type="Magento\InventoryReservations\Model\ReservationBuilder"/>
12-
<preference for="Magento\InventoryReservationsApi\Module\CleanupReservationsInterface" type="Magento\InventoryReservations\Model\ResourceModel\CleanupReservations"/>
13-
<preference for="Magento\InventoryReservationsApi\Module\GetReservationsQuantityInterface" type="Magento\InventoryReservations\Model\ResourceModel\GetReservationsQuantity"/>
12+
<preference for="Magento\InventoryReservationsApi\Model\CleanupReservationsInterface" type="Magento\InventoryReservations\Model\ResourceModel\CleanupReservations"/>
13+
<preference for="Magento\InventoryReservationsApi\Model\GetReservationsQuantityInterface" type="Magento\InventoryReservations\Model\ResourceModel\GetReservationsQuantity"/>
1414
<type name="Magento\InventoryReservations\Model\ResourceModel\CleanupReservations">
1515
<arguments>
1616
<argument name="groupConcatMaxLen" xsi:type="number">2000</argument>

app/code/Magento/InventoryReservationsApi/Module/CleanupReservationsInterface.php renamed to app/code/Magento/InventoryReservationsApi/Model/CleanupReservationsInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
declare(strict_types=1);
77

8-
namespace Magento\InventoryReservationsApi\Module;
8+
namespace Magento\InventoryReservationsApi\Model;
99

1010
/**
1111
* Extension point for reservation cleanup (Service Provider Interface - SPI).

app/code/Magento/InventoryReservationsApi/Module/GetReservationsQuantityInterface.php renamed to app/code/Magento/InventoryReservationsApi/Model/GetReservationsQuantityInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
declare(strict_types=1);
77

8-
namespace Magento\InventoryReservationsApi\Module;
8+
namespace Magento\InventoryReservationsApi\Model;
99

1010
/**
1111
* Responsible for retrieving Reservation Quantity (without stock data)

app/code/Magento/InventorySales/Model/GetProductSalableQty.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace Magento\InventorySales\Model;
99

10-
use Magento\InventoryReservationsApi\Module\GetReservationsQuantityInterface;
10+
use Magento\InventoryReservationsApi\Model\GetReservationsQuantityInterface;
1111
use Magento\InventorySalesApi\Api\GetProductSalableQtyInterface;
1212

1313
/**

app/code/Magento/InventorySales/Model/IsProductSalableCondition/IsSalableWithReservationsCondition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Magento\InventoryCatalog\Model\GetProductTypesBySkusInterface;
1111
use Magento\InventoryConfiguration\Model\IsSourceItemsAllowedForProductType;
1212
use Magento\InventoryConfigurationApi\Api\Data\StockItemConfigurationInterface;
13-
use Magento\InventoryReservationsApi\Module\GetReservationsQuantityInterface;
13+
use Magento\InventoryReservationsApi\Model\GetReservationsQuantityInterface;
1414
use Magento\InventorySalesApi\Api\IsProductSalableInterface;
1515
use Magento\InventorySales\Model\GetStockItemDataInterface;
1616
use Magento\InventoryConfigurationApi\Api\GetStockItemConfigurationInterface;

app/code/Magento/InventorySales/Model/IsProductSalableForRequestedQtyCondition/IsCorrectQtyCondition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use Magento\Framework\Math\Division as MathDivision;
1212
use Magento\InventoryConfigurationApi\Api\GetStockItemConfigurationInterface;
1313
use Magento\InventoryConfigurationApi\Api\Data\StockItemConfigurationInterface;
14-
use Magento\InventoryReservationsApi\Module\GetReservationsQuantityInterface;
14+
use Magento\InventoryReservationsApi\Model\GetReservationsQuantityInterface;
1515
use Magento\InventorySales\Model\GetStockItemDataInterface;
1616
use Magento\InventorySalesApi\Api\IsProductSalableForRequestedQtyInterface;
1717
use Magento\InventorySalesApi\Api\Data\ProductSalableResultInterfaceFactory;

app/code/Magento/InventorySales/Model/IsProductSalableForRequestedQtyCondition/IsSalableWithReservationsCondition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace Magento\InventorySales\Model\IsProductSalableForRequestedQtyCondition;
99

10-
use Magento\InventoryReservationsApi\Module\GetReservationsQuantityInterface;
10+
use Magento\InventoryReservationsApi\Model\GetReservationsQuantityInterface;
1111
use Magento\InventorySalesApi\Api\IsProductSalableForRequestedQtyInterface;
1212
use Magento\InventorySales\Model\GetStockItemDataInterface;
1313
use Magento\InventorySalesApi\Api\Data\ProductSalableResultInterface;

app/code/Magento/InventorySales/Test/Integration/IsProductSalable/IsSalableWithReservationsConditionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use Magento\Framework\Api\SearchCriteriaBuilder;
1414
use Magento\InventoryApi\Api\SourceItemRepositoryInterface;
1515
use Magento\InventoryApi\Api\SourceItemsSaveInterface;
16-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
16+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
1717
use Magento\InventoryReservationsApi\Api\AppendReservationsInterface;
1818
use Magento\InventoryReservationsApi\Api\ReservationBuilderInterface;
1919
use Magento\InventorySalesApi\Api\IsProductSalableInterface;

app/code/Magento/InventorySales/Test/Integration/IsProductSalable/MinQtyConditionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ protected function setUp()
4343
* @return void
4444
*
4545
* @dataProvider executeWithMinQtyDataProvider
46-
*
46+
*
4747
* @magentoDbIsolation disabled
4848
*/
4949
public function testExecuteWithMinQty(string $sku, int $stockId, bool $expectedResult)

app/code/Magento/InventorySales/Test/Integration/IsProductSalableForRequestedQty/BackorderConditionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ protected function setUp()
7676
* @magentoDataFixture ../../../../app/code/Magento/InventoryApi/Test/_files/stocks.php
7777
* @magentoDataFixture ../../../../app/code/Magento/InventoryApi/Test/_files/stock_source_links.php
7878
* @magentoDataFixture ../../../../app/code/Magento/InventoryApi/Test/_files/source_items.php
79-
*
79+
*
8080
* @magentoDbIsolation disabled
8181
*/
8282
public function testBackorderedZeroQtyProductIsSalable()

app/code/Magento/InventorySales/Test/Integration/IsProductSalableForRequestedQty/IsCorrectQtyConditionTest.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ protected function setUp()
7979
* @return void
8080
*
8181
* @dataProvider executeWithMissingConfigurationDataProvider
82-
*
82+
*
8383
* @magentoDbIsolation disabled
8484
*/
8585
public function testExecuteWithMissingConfiguration(
@@ -119,7 +119,7 @@ public function executeWithMissingConfigurationDataProvider(): array
119119
* @return void
120120
*
121121
* @dataProvider executeWithUseConfigMinSaleQtyDataProvider
122-
*
122+
*
123123
* @magentoDbIsolation disabled
124124
*/
125125
public function testExecuteWithUseConfigMinSaleQty(
@@ -176,7 +176,7 @@ public function executeWithUseConfigMinSaleQtyDataProvider(): array
176176
*
177177
* @return void
178178
* @dataProvider executeWithMinSaleQtyDataProvider
179-
*
179+
*
180180
* @magentoDbIsolation disabled
181181
*/
182182
public function testExecuteWithMinSaleQty(
@@ -235,7 +235,7 @@ public function executeWithMinSaleQtyDataProvider(): array
235235
* @return void
236236
*
237237
* @dataProvider executeWithUseConfigMaxSaleQtyDataProvider
238-
*
238+
*
239239
* @magentoDbIsolation disabled
240240
*/
241241
public function testExecuteWithUseConfigMaxSaleQty(
@@ -295,7 +295,7 @@ public function executeWithUseConfigMaxSaleQtyDataProvider(): array
295295
* @return void
296296
*
297297
* @dataProvider executeWithMaxSaleQtyDataProvider
298-
*
298+
*
299299
* @magentoDbIsolation disabled
300300
*/
301301
public function testExecuteWithMaxSaleQty(
@@ -357,7 +357,7 @@ public function executeWithMaxSaleQtyDataProvider(): array
357357
* @return void
358358
*
359359
* @dataProvider executeWithUseConfigQtyIncrementsDataProvider
360-
*
360+
*
361361
* @magentoDbIsolation disabled
362362
*/
363363
public function testExecuteWithUseConfigQtyIncrements(
@@ -419,7 +419,7 @@ public function executeWithUseConfigQtyIncrementsDataProvider(): array
419419
* @return void
420420
*
421421
* @dataProvider executeWithQtyIncrementsDataProvider
422-
*
422+
*
423423
* @magentoDbIsolation disabled
424424
*/
425425
public function testExecuteWithQtyIncrements(

app/code/Magento/InventorySales/Test/Integration/IsProductSalableForRequestedQty/IsSalableWithReservationsConditionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Magento\InventoryConfigurationApi\Api\Data\StockItemConfigurationInterface;
1111
use Magento\InventoryConfigurationApi\Api\GetStockItemConfigurationInterface;
1212
use Magento\InventoryConfigurationApi\Api\SaveStockItemConfigurationInterface;
13-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
13+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
1414
use Magento\InventoryReservationsApi\Api\AppendReservationsInterface;
1515
use Magento\InventoryReservationsApi\Api\ReservationBuilderInterface;
1616
use Magento\InventorySalesApi\Api\IsProductSalableForRequestedQtyInterface;

app/code/Magento/InventorySales/Test/Integration/Order/PlaceOrderOnDefaultStockTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
use PHPUnit\Framework\TestCase;
2626
use Magento\TestFramework\Helper\Bootstrap;
2727
use Magento\InventoryCatalog\Api\DefaultStockProviderInterface;
28-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
28+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
2929
use Magento\Catalog\Api\ProductRepositoryInterface;
3030

3131
/**

app/code/Magento/InventorySales/Test/Integration/Order/PlaceOrderOnNotDefaultStockTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
use Magento\Store\Model\StoreManagerInterface;
2727
use PHPUnit\Framework\TestCase;
2828
use Magento\TestFramework\Helper\Bootstrap;
29-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
29+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
3030
use Magento\Catalog\Api\ProductRepositoryInterface;
3131
use Magento\InventoryApi\Api\StockRepositoryInterface;
3232

app/code/Magento/InventorySales/Test/Integration/SalesQuoteItem/AddSalesQuoteItemOnDefaultStockTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use Magento\Framework\Exception\LocalizedException;
1313
use Magento\Framework\Exception\NoSuchEntityException;
1414
use Magento\InventoryCatalog\Api\DefaultStockProviderInterface;
15-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
15+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
1616
use Magento\Quote\Api\Data\CartItemInterface;
1717
use Magento\Quote\Model\Quote;
1818
use Magento\TestFramework\Helper\Bootstrap;

app/code/Magento/InventorySales/Test/Integration/SalesQuoteItem/AddSalesQuoteItemOnNotDefaultStockTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Magento\Framework\Validation\ValidationException;
1717
use Magento\InventoryApi\Api\Data\StockInterface;
1818
use Magento\InventoryApi\Api\StockRepositoryInterface;
19-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
19+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
2020
use Magento\InventorySalesApi\Api\Data\SalesChannelInterface;
2121
use Magento\Quote\Api\Data\CartItemInterface;
2222
use Magento\Quote\Model\Quote;

app/code/Magento/InventorySales/Test/Integration/Stock/GetProductSalableQtyTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace Magento\InventorySales\Test\Integration\Stock;
99

10-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
10+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
1111
use Magento\InventoryReservationsApi\Api\AppendReservationsInterface;
1212
use Magento\InventoryReservationsApi\Api\ReservationBuilderInterface;
1313
use Magento\InventorySalesApi\Api\GetProductSalableQtyInterface;

app/code/Magento/InventorySales/Test/Integration/StockManagement/ReservationPlacingDuringBackItemQtyTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Magento\Catalog\Api\ProductRepositoryInterface;
1111
use Magento\CatalogInventory\Model\StockManagement;
1212
use Magento\InventoryApi\Api\StockRepositoryInterface;
13-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
13+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
1414
use Magento\InventoryReservationsApi\Api\AppendReservationsInterface;
1515
use Magento\InventoryReservationsApi\Api\ReservationBuilderInterface;
1616
use Magento\InventorySalesApi\Api\GetProductSalableQtyInterface;

app/code/Magento/InventorySales/Test/Integration/StockManagement/ReservationPlacingDuringRegisterProductsSaleTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
use Magento\Framework\Api\SearchCriteriaBuilder;
1313
use Magento\Framework\App\ResourceConnection;
1414
use Magento\Framework\Registry;
15-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
16-
use Magento\InventoryReservationsApi\Module\GetReservationsQuantityInterface;
15+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
16+
use Magento\InventoryReservationsApi\Model\GetReservationsQuantityInterface;
1717
use Magento\InventoryReservationsApi\Api\AppendReservationsInterface;
1818
use Magento\InventoryReservationsApi\Api\Data\ReservationInterface;
1919
use Magento\InventoryReservationsApi\Api\ReservationBuilderInterface;

app/code/Magento/InventorySales/Test/Integration/StockManagement/ReservationPlacingDuringRevertProductsSaleTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Magento\Catalog\Api\ProductRepositoryInterface;
1111
use Magento\CatalogInventory\Model\StockManagement;
1212
use Magento\InventoryApi\Api\StockRepositoryInterface;
13-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
13+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
1414
use Magento\InventoryReservationsApi\Api\AppendReservationsInterface;
1515
use Magento\InventoryReservationsApi\Api\ReservationBuilderInterface;
1616
use Magento\InventorySalesApi\Api\GetProductSalableQtyInterface;
@@ -89,7 +89,7 @@ protected function tearDown()
8989
* @magentoDataFixture ../../../../app/code/Magento/InventoryIndexer/Test/_files/reindex_inventory.php
9090
* @magentoDataFixture ../../../../app/code/Magento/InventorySalesApi/Test/_files/websites_with_stores.php
9191
* @magentoDataFixture ../../../../app/code/Magento/InventorySalesApi/Test/_files/stock_website_sales_channels.php
92-
*
92+
*
9393
* @magentoDbIsolation disabled
9494
*/
9595
public function testRevertProductsSale()

app/code/Magento/InventorySales/Test/Integration/StockManagement/ReservationPlacingOnCanSubtractQtySetToZeroTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
namespace Magento\InventorySales\Test\Integration\StockManagement;
99

10-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
11-
use Magento\InventoryReservationsApi\Module\GetReservationsQuantityInterface;
10+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
11+
use Magento\InventoryReservationsApi\Model\GetReservationsQuantityInterface;
1212
use Magento\InventoryReservationsApi\Api\AppendReservationsInterface;
1313
use Magento\InventoryReservationsApi\Api\ReservationBuilderInterface;
1414
use Magento\TestFramework\Helper\Bootstrap;
@@ -56,7 +56,7 @@ protected function tearDown()
5656
* @magentoDataFixture ../../../../app/code/Magento/InventorySalesApi/Test/_files/websites_with_stores.php
5757
* @magentoDataFixture ../../../../app/code/Magento/InventorySalesApi/Test/_files/stock_website_sales_channels.php
5858
* @magentoConfigFixture default_store cataloginventory/options/can_subtract 0
59-
*
59+
*
6060
* @magentoDbIsolation disabled
6161
*/
6262
public function testPlacingReservationOnCanSubtractQtySetToZero()

app/code/Magento/InventorySales/Test/Integration/StockManagement/ReservationPlacingOnUseConfigManageStockSetToZeroTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
namespace Magento\InventorySales\Test\Integration\StockManagement;
99

10-
use Magento\InventoryReservationsApi\Module\CleanupReservationsInterface;
11-
use Magento\InventoryReservationsApi\Module\GetReservationsQuantityInterface;
10+
use Magento\InventoryReservationsApi\Model\CleanupReservationsInterface;
11+
use Magento\InventoryReservationsApi\Model\GetReservationsQuantityInterface;
1212
use Magento\InventoryReservationsApi\Api\AppendReservationsInterface;
1313
use Magento\InventoryReservationsApi\Api\ReservationBuilderInterface;
1414
use Magento\TestFramework\Helper\Bootstrap;

app/code/Magento/InventoryShipping/Test/Integration/SourceDeductionForVirtualProductsOnDefaultStockTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use Magento\InventoryApi\Api\SourceItemRepositoryInterface;
1414
use Magento\InventoryCatalog\Api\DefaultSourceProviderInterface;
1515
use Magento\InventoryCatalog\Api\DefaultStockProviderInterface;
16-
use Magento\InventoryReservationsApi\Module\GetReservationsQuantityInterface;
16+
use Magento\InventoryReservationsApi\Model\GetReservationsQuantityInterface;
1717
use Magento\Sales\Api\Data\InvoiceItemCreationInterface;
1818
use Magento\Sales\Api\Data\InvoiceItemCreationInterfaceFactory;
1919
use Magento\Sales\Api\Data\OrderInterface;

app/code/Magento/InventoryShipping/Test/Integration/SourceDeductionForVirtualProductsOnMultiStockTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use Magento\Framework\Registry;
1212
use Magento\InventoryApi\Api\Data\SourceItemInterface;
1313
use Magento\InventoryApi\Api\SourceItemRepositoryInterface;
14-
use Magento\InventoryReservationsApi\Module\GetReservationsQuantityInterface;
14+
use Magento\InventoryReservationsApi\Model\GetReservationsQuantityInterface;
1515
use Magento\InventorySalesApi\Api\GetProductSalableQtyInterface;
1616
use Magento\Sales\Api\Data\InvoiceItemCreationInterface;
1717
use Magento\Sales\Api\Data\InvoiceItemCreationInterfaceFactory;

0 commit comments

Comments
 (0)