Skip to content

Commit bb15005

Browse files
committed
Updated class namespace in api php doc
1 parent 55d1f18 commit bb15005

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

app/code/Magento/Catalog/Api/ProductLinkManagementInterface.php

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@
66

77
namespace Magento\Catalog\Api;
88

9-
use Magento\Catalog\Api\Data\ProductLinkInterface;
10-
use Magento\Framework\Exception\NoSuchEntityException;
11-
use Magento\Framework\Exception\CouldNotSaveException;
12-
use Magento\Framework\Exception\InputException;
13-
149
/**
1510
* @api
1611
* @since 100.0.2
@@ -22,19 +17,19 @@ interface ProductLinkManagementInterface
2217
*
2318
* @param string $sku
2419
* @param string $type
25-
* @throws NoSuchEntityException
26-
* @return ProductLinkInterface[]
20+
* @throws \Magento\Framework\Exception\NoSuchEntityException
21+
* @return \Magento\Catalog\Api\Data\ProductLinkInterface[]
2722
*/
2823
public function getLinkedItemsByType($sku, $type);
2924

3025
/**
3126
* Assign a product link to another product
3227
*
3328
* @param string $sku
34-
* @param ProductLinkInterface[] $items
35-
* @throws NoSuchEntityException
36-
* @throws CouldNotSaveException
37-
* @throws InputException
29+
* @param \Magento\Catalog\Api\Data\ProductLinkInterface[] $items
30+
* @throws \Magento\Framework\Exception\NoSuchEntityException
31+
* @throws \Magento\Framework\Exception\CouldNotSaveException
32+
* @throws \Magento\Framework\Exception\InputException
3833
* @return bool
3934
*/
4035
public function setProductLinks($sku, array $items);

0 commit comments

Comments
 (0)