Skip to content

Commit 50c0264

Browse files
committed
#18668: Fixed @inheritdoc annotations on methods from \Magento\TestFramework\Store\StoreManager
1 parent 0e75d2d commit 50c0264

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

dev/tests/integration/framework/Magento/TestFramework/Store/StoreManager.php

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
/**
1212
* Integration tests decoration of store manager
13-
*
14-
* @package Magento\TestFramework\Store
1513
*/
1614
class StoreManager implements \Magento\Store\Model\StoreManagerInterface
1715
{
@@ -43,7 +41,7 @@ public function __construct(
4341
}
4442

4543
/**
46-
* {@inheritdoc}
44+
* @inheritdoc
4745
*/
4846
public function setCurrentStore($store)
4947
{
@@ -52,7 +50,7 @@ public function setCurrentStore($store)
5250
}
5351

5452
/**
55-
* {@inheritdoc}
53+
* @inheritdoc
5654
*/
5755
public function setIsSingleStoreModeAllowed($value)
5856
{
@@ -61,7 +59,7 @@ public function setIsSingleStoreModeAllowed($value)
6159
}
6260

6361
/**
64-
* {@inheritdoc}
62+
* @inheritdoc
6563
*/
6664
public function hasSingleStore()
6765
{
@@ -71,7 +69,7 @@ public function hasSingleStore()
7169
}
7270

7371
/**
74-
* {@inheritdoc}
72+
* @inheritdoc
7573
*/
7674
public function isSingleStoreMode()
7775
{
@@ -81,7 +79,7 @@ public function isSingleStoreMode()
8179
}
8280

8381
/**
84-
* {@inheritdoc}
82+
* @inheritdoc
8583
*/
8684
public function getStore($storeId = null)
8785
{
@@ -91,7 +89,7 @@ public function getStore($storeId = null)
9189
}
9290

9391
/**
94-
* {@inheritdoc}
92+
* @inheritdoc
9593
*/
9694
public function getStores($withDefault = false, $codeKey = false)
9795
{
@@ -101,7 +99,7 @@ public function getStores($withDefault = false, $codeKey = false)
10199
}
102100

103101
/**
104-
* {@inheritdoc}
102+
* @inheritdoc
105103
*/
106104
public function getWebsite($websiteId = null)
107105
{
@@ -111,7 +109,7 @@ public function getWebsite($websiteId = null)
111109
}
112110

113111
/**
114-
* {@inheritdoc}
112+
* @inheritdoc
115113
*/
116114
public function getWebsites($withDefault = false, $codeKey = false)
117115
{
@@ -121,7 +119,7 @@ public function getWebsites($withDefault = false, $codeKey = false)
121119
}
122120

123121
/**
124-
* {@inheritdoc}
122+
* @inheritdoc
125123
*/
126124
public function reinitStores()
127125
{
@@ -145,7 +143,7 @@ public function reinitStores()
145143
}
146144

147145
/**
148-
* {@inheritdoc}
146+
* @inheritdoc
149147
*/
150148
public function getDefaultStoreView()
151149
{
@@ -155,7 +153,7 @@ public function getDefaultStoreView()
155153
}
156154

157155
/**
158-
* {@inheritdoc}
156+
* @inheritdoc
159157
*/
160158
public function getGroup($groupId = null)
161159
{
@@ -165,7 +163,7 @@ public function getGroup($groupId = null)
165163
}
166164

167165
/**
168-
* {@inheritdoc}
166+
* @inheritdoc
169167
*/
170168
public function getGroups($withDefault = false)
171169
{

0 commit comments

Comments
 (0)