@@ -33,9 +33,9 @@ discard block |
||
33 | 33 | { |
34 | 34 | $sfx = $this->randomString(5); |
35 | 35 | $counterparty = [ |
36 | - 'FirstName' => 'Іван' . $sfx, |
|
37 | - 'MiddleName' => 'Іванович' . $sfx, |
|
38 | - 'LastName' => 'Іванов' . $sfx, |
|
36 | + 'FirstName' => 'Іван'.$sfx, |
|
37 | + 'MiddleName' => 'Іванович'.$sfx, |
|
38 | + 'LastName' => 'Іванов'.$sfx, |
|
39 | 39 | 'Phone' => rand(380000000000, 380000999999), |
40 | 40 | 'Email' => '[email protected]', |
41 | 41 | 'CounterpartyProperty' => 'Recipient', |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | //update counterparty |
49 | 49 | $counterparty['Ref'] = $actualResult['Ref']; |
50 | - $counterparty['MiddleName'] = 'Петрович' . $sfx; |
|
50 | + $counterparty['MiddleName'] = 'Петрович'.$sfx; |
|
51 | 51 | $counterparty['CityRef'] = self::CITY_REF_KHARKIV; |
52 | 52 | |
53 | 53 | $actualResult = $this->model->updatePrivatePerson($counterparty); |
@@ -109,7 +109,7 @@ |
||
109 | 109 | } |
110 | 110 | $attemptsNotExceeded = $attempt <= 3; |
111 | 111 | if ($attemptsNotExceeded) { |
112 | - printf(PHP_EOL . 'Attempt %d to delete document failed.' . PHP_EOL, $attempt); |
|
112 | + printf(PHP_EOL.'Attempt %d to delete document failed.'.PHP_EOL, $attempt); |
|
113 | 113 | $this->deleteDocument($ref, ++$attempt); |
114 | 114 | } else { |
115 | 115 | throw $e; |