Skip to content

Commit

Permalink
#21083: Static test fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
p-bystritsky committed Apr 1, 2019
1 parent b3b6c90 commit a7f03dd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions app/code/Magento/ConfigurableProduct/Model/LinkManagement.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php
/**
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
Expand All @@ -11,6 +10,9 @@
use Magento\Framework\Exception\NoSuchEntityException;
use Magento\Framework\Exception\StateException;

/**
* Configurable product link management.
*/
class LinkManagement implements \Magento\ConfigurableProduct\Api\LinkManagementInterface
{
/**
Expand Down Expand Up @@ -68,7 +70,7 @@ public function __construct(
}

/**
* {@inheritdoc}
* @inheritdoc
*/
public function getChildren($sku)
{
Expand Down Expand Up @@ -107,7 +109,7 @@ public function getChildren($sku)
}

/**
* {@inheritdoc}
* @inheritdoc
*/
public function addChild($sku, $childSku)
{
Expand Down Expand Up @@ -150,7 +152,7 @@ public function addChild($sku, $childSku)
}

/**
* {@inheritdoc}
* @inheritdoc
*/
public function removeChild($sku, $childSku)
{
Expand Down

0 comments on commit a7f03dd

Please sign in to comment.