Skip to content

Commit fa5cf90

Browse files
committed
Fix static tests.
1 parent 6e079a3 commit fa5cf90

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

app/code/Magento/Quote/Model/QuoteRepository.php

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6+
67
namespace Magento\Quote\Model;
78

89
use Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface;
@@ -24,6 +25,8 @@
2425
use Magento\Store\Model\StoreManagerInterface;
2526

2627
/**
28+
* Quote repository.
29+
*
2730
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
2831
*/
2932
class QuoteRepository implements CartRepositoryInterface
@@ -125,7 +128,7 @@ public function __construct(
125128
}
126129

127130
/**
128-
* {@inheritdoc}
131+
* @inheritdoc
129132
*/
130133
public function get($cartId, array $sharedStoreIds = [])
131134
{
@@ -138,7 +141,7 @@ public function get($cartId, array $sharedStoreIds = [])
138141
}
139142

140143
/**
141-
* {@inheritdoc}
144+
* @inheritdoc
142145
*/
143146
public function getForCustomer($customerId, array $sharedStoreIds = [])
144147
{
@@ -152,7 +155,7 @@ public function getForCustomer($customerId, array $sharedStoreIds = [])
152155
}
153156

154157
/**
155-
* {@inheritdoc}
158+
* @inheritdoc
156159
*/
157160
public function getActive($cartId, array $sharedStoreIds = [])
158161
{
@@ -164,7 +167,7 @@ public function getActive($cartId, array $sharedStoreIds = [])
164167
}
165168

166169
/**
167-
* {@inheritdoc}
170+
* @inheritdoc
168171
*/
169172
public function getActiveForCustomer($customerId, array $sharedStoreIds = [])
170173
{
@@ -176,7 +179,7 @@ public function getActiveForCustomer($customerId, array $sharedStoreIds = [])
176179
}
177180

178181
/**
179-
* {@inheritdoc}
182+
* @inheritdoc
180183
*/
181184
public function save(CartInterface $quote)
182185
{
@@ -196,7 +199,7 @@ public function save(CartInterface $quote)
196199
}
197200

198201
/**
199-
* {@inheritdoc}
202+
* @inheritdoc
200203
*/
201204
public function delete(CartInterface $quote)
202205
{
@@ -232,7 +235,7 @@ protected function loadQuote($loadMethod, $loadField, $identifier, array $shared
232235
}
233236

234237
/**
235-
* {@inheritdoc}
238+
* @inheritdoc
236239
*/
237240
public function getList(SearchCriteriaInterface $searchCriteria)
238241
{
@@ -277,6 +280,7 @@ protected function addFilterGroupToCollection(FilterGroup $filterGroup, QuoteCol
277280

278281
/**
279282
* Get new SaveHandler dependency for application code.
283+
*
280284
* @return SaveHandler
281285
* @deprecated 100.1.0
282286
*/
@@ -289,6 +293,8 @@ private function getSaveHandler()
289293
}
290294

291295
/**
296+
* Get load handler instance.
297+
*
292298
* @return LoadHandler
293299
* @deprecated 100.1.0
294300
*/

0 commit comments

Comments
 (0)