@@ -242,7 +242,7 @@ discard block |
||
| 242 | 242 | $itemsCount = $this->showPage->countItems(); |
| 243 | 243 | |
| 244 | 244 | Assert::same( |
| 245 | - (int)$amount, |
|
| 245 | + (int) $amount, |
|
| 246 | 246 | $itemsCount, |
| 247 | 247 | sprintf('There should be %d items, but get %d.', $amount, $itemsCount) |
| 248 | 248 | ); |
@@ -721,7 +721,7 @@ discard block |
||
| 721 | 721 | { |
| 722 | 722 | $actualNumberOfPayments = $this->showPage->getPaymentsCount(); |
| 723 | 723 | |
| 724 | - Assert::same((int)$number, $actualNumberOfPayments); |
|
| 724 | + Assert::same((int) $number, $actualNumberOfPayments); |
|
| 725 | 725 | } |
| 726 | 726 | |
| 727 | 727 | /** |
@@ -45,11 +45,11 @@ discard block |
||
| 45 | 45 | */ |
| 46 | 46 | private function specifyAddress(AddressInterface $address, $addressType) |
| 47 | 47 | { |
| 48 | - $this->specifyElementValue($addressType.'_first_name', $address->getFirstName()); |
|
| 49 | - $this->specifyElementValue($addressType.'_last_name', $address->getLastName()); |
|
| 50 | - $this->specifyElementValue($addressType.'_street', $address->getStreet()); |
|
| 51 | - $this->specifyElementValue($addressType.'_city', $address->getCity()); |
|
| 52 | - $this->specifyElementValue($addressType.'_postcode', $address->getPostcode()); |
|
| 48 | + $this->specifyElementValue($addressType . '_first_name', $address->getFirstName()); |
|
| 49 | + $this->specifyElementValue($addressType . '_last_name', $address->getLastName()); |
|
| 50 | + $this->specifyElementValue($addressType . '_street', $address->getStreet()); |
|
| 51 | + $this->specifyElementValue($addressType . '_city', $address->getCity()); |
|
| 52 | + $this->specifyElementValue($addressType . '_postcode', $address->getPostcode()); |
|
| 53 | 53 | |
| 54 | 54 | $this->chooseCountry($address->getCountryCode(), $addressType); |
| 55 | 55 | } |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | private function chooseCountry($country, $addressType) |
| 116 | 116 | { |
| 117 | - $this->getElement($addressType.'_country')->selectOption((null !== $country) ? $country : 'Select'); |
|
| 117 | + $this->getElement($addressType . '_country')->selectOption((null !== $country) ? $country : 'Select'); |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | /** |