Skip to content

Commit dd9b294

Browse files
rogyardmytro-ch
authored andcommitted
Minor code style fixes
1 parent 484bbba commit dd9b294

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

app/code/Magento/Customer/Model/GroupManagement.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
use Magento\Store\Model\StoreManagerInterface;
2121

2222
/**
23+
* The class contains methods for getting information about a customer group
24+
*
2325
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
2426
*/
2527
class GroupManagement implements \Magento\Customer\Api\GroupManagementInterface
@@ -104,7 +106,7 @@ public function __construct(
104106
}
105107

106108
/**
107-
* {@inheritdoc}
109+
* @inheritdoc
108110
*/
109111
public function isReadonly($groupId)
110112
{
@@ -118,7 +120,7 @@ public function isReadonly($groupId)
118120
}
119121

120122
/**
121-
* {@inheritdoc}
123+
* @inheritdoc
122124
*/
123125
public function getDefaultGroup($storeId = null)
124126
{
@@ -144,15 +146,15 @@ public function getDefaultGroup($storeId = null)
144146
}
145147

146148
/**
147-
* {@inheritdoc}
149+
* @inheritdoc
148150
*/
149151
public function getNotLoggedInGroup()
150152
{
151153
return $this->groupRepository->getById(self::NOT_LOGGED_IN_ID);
152154
}
153155

154156
/**
155-
* {@inheritdoc}
157+
* @inheritdoc
156158
*/
157159
public function getLoggedInGroups()
158160
{
@@ -179,7 +181,7 @@ public function getLoggedInGroups()
179181
}
180182

181183
/**
182-
* {@inheritdoc}
184+
* @inheritdoc
183185
*/
184186
public function getAllCustomersGroup()
185187
{

0 commit comments

Comments
 (0)