Skip to content

Commit 7f8dd44

Browse files
fix static
1 parent a16efb6 commit 7f8dd44

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ public function __construct(
196196
* @throws \Magento\Framework\Exception\LocalizedException
197197
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
198198
* @SuppressWarnings(PHPMD.NPathComplexity)
199+
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
199200
*/
200201
public function save(CustomerInterface $customer, $passwordHash = null)
201202
{

dev/tests/api-functional/testsuite/Magento/Customer/Api/CustomerRepositoryTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
*/
3232
class CustomerRepositoryTest extends WebapiAbstract
3333
{
34-
private const SERVICE_VERSION = 'V1';
35-
private const SERVICE_NAME = 'customerCustomerRepositoryV1';
36-
private const RESOURCE_PATH = '/V1/customers';
34+
const SERVICE_VERSION = 'V1';
35+
const SERVICE_NAME = 'customerCustomerRepositoryV1';
36+
const RESOURCE_PATH = '/V1/customers';
3737

3838
private const STUB_INVALID_CUSTOMER_GROUP_ID = 777;
3939

0 commit comments

Comments
 (0)