Skip to content

Commit

Permalink
Minor code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rogyar authored and dmytro-ch committed Sep 27, 2018
1 parent 484bbba commit dd9b294
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions app/code/Magento/Customer/Model/GroupManagement.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
use Magento\Store\Model\StoreManagerInterface;

/**
* The class contains methods for getting information about a customer group
*
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
class GroupManagement implements \Magento\Customer\Api\GroupManagementInterface
Expand Down Expand Up @@ -104,7 +106,7 @@ public function __construct(
}

/**
* {@inheritdoc}
* @inheritdoc
*/
public function isReadonly($groupId)
{
Expand All @@ -118,7 +120,7 @@ public function isReadonly($groupId)
}

/**
* {@inheritdoc}
* @inheritdoc
*/
public function getDefaultGroup($storeId = null)
{
Expand All @@ -144,15 +146,15 @@ public function getDefaultGroup($storeId = null)
}

/**
* {@inheritdoc}
* @inheritdoc
*/
public function getNotLoggedInGroup()
{
return $this->groupRepository->getById(self::NOT_LOGGED_IN_ID);
}

/**
* {@inheritdoc}
* @inheritdoc
*/
public function getLoggedInGroups()
{
Expand All @@ -179,7 +181,7 @@ public function getLoggedInGroups()
}

/**
* {@inheritdoc}
* @inheritdoc
*/
public function getAllCustomersGroup()
{
Expand Down

0 comments on commit dd9b294

Please sign in to comment.