Skip to content

Commit da2c920

Browse files
committed
Removed white spaces from code.
1 parent 55047c7 commit da2c920

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Magento/Integration/Model/CustomerTokenService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function createCustomerAccessToken($username, $password)
9191
throw new AuthenticationException(
9292
__('You did not sign in correctly or your account is temporarily disabled.')
9393
);
94-
}
94+
}
9595
$this->eventManager->dispatch('customer_login', ['customer' => $customerDataObject]);
9696
$this->getRequestThrottler()->resetAuthenticationFailuresCount($username, RequestThrottler::USER_TYPE_CUSTOMER);
9797
return $this->tokenModelFactory->create()->createCustomerToken($customerDataObject->getId())->getToken();

app/code/Magento/Integration/Test/Unit/Model/CustomerTokenServiceTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ protected function setUp()
7171
)->disableOriginalConstructor()->getMock();
7272

7373
$this->manager = $this->createMock(\Magento\Framework\Event\ManagerInterface::class);
74-
74+
7575
$this->_tokenService = new \Magento\Integration\Model\CustomerTokenService(
7676
$this->_tokenFactoryMock,
7777
$this->_accountManagementMock,

0 commit comments

Comments
 (0)