Skip to content

Commit 49c58bf

Browse files
committed
ACP2E-873 Allowed Country per website issue
Static failures fixed
1 parent 4792291 commit 49c58bf

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

app/code/Magento/Customer/Model/ResourceModel/AddressRepository.php

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
22
/**
3-
* Customer address entity resource model
4-
*
53
* Copyright © Magento, Inc. All rights reserved.
64
* See COPYING.txt for license details.
75
*/
@@ -17,15 +15,11 @@
1715
use Magento\Framework\Exception\InputException;
1816

1917
/**
20-
* Address repository.
21-
*
2218
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
2319
*/
2420
class AddressRepository implements \Magento\Customer\Api\AddressRepositoryInterface
2521
{
2622
/**
27-
* Directory data
28-
*
2923
* @var \Magento\Directory\Helper\Data
3024
*/
3125
protected $directoryData;
@@ -277,7 +271,7 @@ private function getCollectionProcessor()
277271
{
278272
if (!$this->collectionProcessor) {
279273
$this->collectionProcessor = \Magento\Framework\App\ObjectManager::getInstance()->get(
280-
'Magento\Eav\Model\Api\SearchCriteria\CollectionProcessor'
274+
\Magento\Eav\Model\Api\SearchCriteria\CollectionProcessor::class
281275
);
282276
}
283277
return $this->collectionProcessor;

0 commit comments

Comments
 (0)