Skip to content

Commit 5393b18

Browse files
authored
Merge pull request #3322 from magento-engcom/ENGCOM-3214
Fixed issues: - ENGCOM-3214: Add Value, ReadFactory and WriteFactory to Magento Framework's public API
2 parents 258d91e + 41b1834 commit 5393b18

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+162
-9
lines changed

app/code/Magento/CatalogInventory/Api/Data/StockCollectionInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
* Interface StockCollectionInterface
1616
* @api
1717
* @since 100.0.2
18+
*
19+
* @deprecated 2.3.0 Replaced with Multi Source Inventory
20+
* @link https://devdocs.magento.com/guides/v2.3/inventory/index.html
21+
* @link https://devdocs.magento.com/guides/v2.3/inventory/catalog-inventory-replacements.html
1822
*/
1923
interface StockCollectionInterface extends SearchResultsInterface
2024
{

app/code/Magento/CatalogInventory/Api/Data/StockInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
* Interface Stock
1212
* @api
1313
* @since 100.0.2
14+
*
15+
* @deprecated 2.3.0 Replaced with Multi Source Inventory
16+
* @link https://devdocs.magento.com/guides/v2.3/inventory/index.html
17+
* @link https://devdocs.magento.com/guides/v2.3/inventory/catalog-inventory-replacements.html
1418
*/
1519
interface StockInterface extends ExtensibleDataInterface
1620
{

app/code/Magento/CatalogInventory/Api/Data/StockItemCollectionInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
* Interface StockItemCollectionInterface
1616
* @api
1717
* @since 100.0.2
18+
*
19+
* @deprecated 2.3.0 Replaced with Multi Source Inventory
20+
* @link https://devdocs.magento.com/guides/v2.3/inventory/index.html
21+
* @link https://devdocs.magento.com/guides/v2.3/inventory/catalog-inventory-replacements.html
1822
*/
1923
interface StockItemCollectionInterface extends SearchResultsInterface
2024
{

app/code/Magento/CatalogInventory/Api/Data/StockItemInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
* Interface StockItem
1212
* @api
1313
* @since 100.0.2
14+
*
15+
* @deprecated 2.3.0 Replaced with Multi Source Inventory
16+
* @link https://devdocs.magento.com/guides/v2.3/inventory/index.html
17+
* @link https://devdocs.magento.com/guides/v2.3/inventory/catalog-inventory-replacements.html
1418
*/
1519
interface StockItemInterface extends ExtensibleDataInterface
1620
{

app/code/Magento/CatalogInventory/Api/Data/StockStatusCollectionInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
* Stock Status collection interface
1212
* @api
1313
* @since 100.0.2
14+
*
15+
* @deprecated 2.3.0 Replaced with Multi Source Inventory
16+
* @link https://devdocs.magento.com/guides/v2.3/inventory/index.html
17+
* @link https://devdocs.magento.com/guides/v2.3/inventory/catalog-inventory-replacements.html
1418
*/
1519
interface StockStatusCollectionInterface extends SearchResultsInterface
1620
{

app/code/Magento/CatalogInventory/Api/Data/StockStatusInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
* Interface StockStatusInterface
1212
* @api
1313
* @since 100.0.2
14+
*
15+
* @deprecated 2.3.0 Replaced with Multi Source Inventory
16+
* @link https://devdocs.magento.com/guides/v2.3/inventory/index.html
17+
* @link https://devdocs.magento.com/guides/v2.3/inventory/catalog-inventory-replacements.html
1418
*/
1519
interface StockStatusInterface extends ExtensibleDataInterface
1620
{

app/code/Magento/CatalogInventory/Api/RegisterProductSaleInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212

1313
/**
1414
* @api
15+
*
16+
* @deprecated 2.3.0 Replaced with Multi Source Inventory
17+
* @link https://devdocs.magento.com/guides/v2.3/inventory/index.html
18+
* @link https://devdocs.magento.com/guides/v2.3/inventory/catalog-inventory-replacements.html
1519
*/
1620
interface RegisterProductSaleInterface
1721
{

app/code/Magento/CatalogInventory/Api/RevertProductSaleInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99

1010
/**
1111
* @api
12+
*
13+
* @deprecated 2.3.0 Replaced with Multi Source Inventory
14+
* @link https://devdocs.magento.com/guides/v2.3/inventory/index.html
15+
* @link https://devdocs.magento.com/guides/v2.3/inventory/catalog-inventory-replacements.html
1216
*/
1317
interface RevertProductSaleInterface
1418
{

app/code/Magento/CatalogInventory/Api/StockConfigurationInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
* Interface StockConfigurationInterface
1010
* @api
1111
* @since 100.0.2
12+
*
13+
* @deprecated 2.3.0 Replaced with Multi Source Inventory
14+
* @link https://devdocs.magento.com/guides/v2.3/inventory/index.html
15+
* @link https://devdocs.magento.com/guides/v2.3/inventory/catalog-inventory-replacements.html
1216
*/
1317
interface StockConfigurationInterface
1418
{

app/code/Magento/CatalogInventory/Api/StockCriteriaInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
* Interface StockCriteriaInterface
1010
* @api
1111
* @since 100.0.2
12+
*
13+
* @deprecated 2.3.0 Replaced with Multi Source Inventory
14+
* @link https://devdocs.magento.com/guides/v2.3/inventory/index.html
15+
* @link https://devdocs.magento.com/guides/v2.3/inventory/catalog-inventory-replacements.html
1216
*/
1317
interface StockCriteriaInterface extends \Magento\Framework\Api\CriteriaInterface
1418
{

0 commit comments

Comments
 (0)