Skip to content

Commit a0f53f8

Browse files
committed
MQE-377: Fixed code sniffer errors.
1 parent 62bdb57 commit a0f53f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Magento/FunctionalTestingFramework/DataGenerator/Persist/Curl/FrontendExecutor.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,10 @@ protected function setCookies()
138138
*/
139139
public function write($url, $data = [], $method = CurlInterface::POST, $headers = [])
140140
{
141-
if(isset($data['customer_email'])) {
141+
if (isset($data['customer_email'])) {
142142
unset($data['customer_email']);
143143
}
144-
if(isset($data['customer_password'])) {
144+
if (isset($data['customer_password'])) {
145145
unset($data['customer_password']);
146146
}
147147
$apiUrl = parent::$baseUrl . $url;

0 commit comments

Comments
 (0)