@@ -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); |
@@ -140,7 +140,7 @@ |
||
140 | 140 | } |
141 | 141 | $attemptsNotExceeded = $attempt <= 3; |
142 | 142 | if ($attemptsNotExceeded) { |
143 | - printf(PHP_EOL . 'Attempt %d to delete document failed.' . PHP_EOL, $attempt); |
|
143 | + printf(PHP_EOL.'Attempt %d to delete document failed.'.PHP_EOL, $attempt); |
|
144 | 144 | sleep(5 * $attempt); |
145 | 145 | $this->deleteDocument($ref, ++$attempt); |
146 | 146 | } else { |