@@ -74,7 +74,7 @@ |
||
| 74 | 74 | |
| 75 | 75 | private function getValue(string $path): string |
| 76 | 76 | { |
| 77 | - $val = $this->getXml()->xpath($path . '/text()'); |
|
| 77 | + $val = $this->getXml()->xpath($path.'/text()'); |
|
| 78 | 78 | if ($val === false || !isset($val[0])) { |
| 79 | 79 | return ''; |
| 80 | 80 | } |
@@ -23,7 +23,7 @@ |
||
| 23 | 23 | |
| 24 | 24 | public function setPaymentType(int $type): static |
| 25 | 25 | { |
| 26 | - $this->paymentType = Exceptions\InvalidArgumentException::checkIsInList($type, self::TYPES_PAYMENT);; |
|
| 26 | + $this->paymentType = Exceptions\InvalidArgumentException::checkIsInList($type, self::TYPES_PAYMENT); ; |
|
| 27 | 27 | |
| 28 | 28 | return $this; |
| 29 | 29 | } |
@@ -135,7 +135,7 @@ |
||
| 135 | 135 | public function current(): mixed |
| 136 | 136 | { |
| 137 | 137 | $property = $this->key(); |
| 138 | - $method = 'get' . ucfirst($property); |
|
| 138 | + $method = 'get'.ucfirst($property); |
|
| 139 | 139 | if (method_exists($this, $method)) { |
| 140 | 140 | return $this->{$method}(); |
| 141 | 141 | } |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | if (isset($this->accounts[$alias])) { |
| 29 | 29 | return $this->accounts[$alias]; |
| 30 | 30 | } |
| 31 | - throw new Exceptions\InvalidArgumentException('This account alias does not exists: ' . $alias); |
|
| 31 | + throw new Exceptions\InvalidArgumentException('This account alias does not exists: '.$alias); |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | public function addAccount(string $alias, FioAccount $account): AccountCollection |
| 46 | 46 | { |
| 47 | 47 | if (isset($this->accounts[$alias])) { |
| 48 | - throw new Exceptions\InvalidArgumentException('This alias already exists: ' . $alias); |
|
| 48 | + throw new Exceptions\InvalidArgumentException('This alias already exists: '.$alias); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | $this->accounts[$alias] = $account; |
@@ -15,7 +15,7 @@ discard block |
||
| 15 | 15 | |
| 16 | 16 | public function getAccount(): string |
| 17 | 17 | { |
| 18 | - return $this->prefix() . $this->account; |
|
| 18 | + return $this->prefix().$this->account; |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | public function getAccountAndCode(): string |
| 35 | 35 | { |
| 36 | - return $this->getAccount() . $this->bankCode(); |
|
| 36 | + return $this->getAccount().$this->bankCode(); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | private function bankCode(): string |
| 47 | 47 | { |
| 48 | 48 | if ($this->bankCode !== '') { |
| 49 | - return '/' . $this->bankCode; |
|
| 49 | + return '/'.$this->bankCode; |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | return $this->bankCode; |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | private function prefix(): string |
| 57 | 57 | { |
| 58 | 58 | if ($this->prefix !== '') { |
| 59 | - return $this->prefix . '-'; |
|
| 59 | + return $this->prefix.'-'; |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | return $this->prefix; |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | |
| 27 | - public static function date(int|string|\DateTimeInterface $date, string $format = 'Y-m-d'): string |
|
| 27 | + public static function date(int | string | \DateTimeInterface $date, string $format = 'Y-m-d'): string |
|
| 28 | 28 | { |
| 29 | 29 | return DateTime::from($date)->format($format); |
| 30 | 30 | } |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | * @param array<T> $list |
| 32 | 32 | * @return T |
| 33 | 33 | */ |
| 34 | - public static function checkIsInList(string|int $value, array $list): string|int |
|
| 34 | + public static function checkIsInList(string | int $value, array $list): string | int |
|
| 35 | 35 | { |
| 36 | 36 | if (!in_array($value, $list, true)) { |
| 37 | 37 | throw new InvalidArgumentException(sprintf('Value "%s" is not contained in list: [%s].', $value, implode(', ', $list))); |
@@ -25,8 +25,8 @@ discard block |
||
| 25 | 25 | * Movements in date range. |
| 26 | 26 | */ |
| 27 | 27 | public function movements( |
| 28 | - int|string|\DateTimeInterface $from = '-1 week', |
|
| 29 | - int|string|\DateTimeInterface $to = 'now', |
|
| 28 | + int | string | \DateTimeInterface $from = '-1 week', |
|
| 29 | + int | string | \DateTimeInterface $to = 'now', |
|
| 30 | 30 | ): TransactionList |
| 31 | 31 | { |
| 32 | 32 | $data = $this->download('periods/%s/%s/%s/transactions.%s', Utils\Fio::date($from), Utils\Fio::date($to), $this->reader->getExtension()); |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | /** |
| 74 | 74 | * Set breakpoint to date. |
| 75 | 75 | */ |
| 76 | - public function setLastDate(int|string|\DateTimeInterface $date): void |
|
| 76 | + public function setLastDate(int | string | \DateTimeInterface $date): void |
|
| 77 | 77 | { |
| 78 | 78 | $this->download('set-last-date/%s/%s/', Utils\Fio::date($date)); |
| 79 | 79 | } |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | private function download(string $apiUrl, string ...$args): ResponseInterface |
| 89 | 89 | { |
| 90 | 90 | $token = $this->account->getToken(); |
| 91 | - $requestUrl = Utils\Fio::REST_URL . sprintf($apiUrl, $token, ...$args); |
|
| 91 | + $requestUrl = Utils\Fio::REST_URL.sprintf($apiUrl, $token, ...$args); |
|
| 92 | 92 | |
| 93 | 93 | return $this->queue->download($token, $requestUrl); |
| 94 | 94 | } |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | { |
| 62 | 62 | $response = $this->request( |
| 63 | 63 | $params['token'], |
| 64 | - $this->requestFactory->post(Fio::REST_URL . 'import/', $params, $content), |
|
| 64 | + $this->requestFactory->post(Fio::REST_URL.'import/', $params, $content), |
|
| 65 | 65 | ); |
| 66 | 66 | |
| 67 | 67 | return new XMLResponse($response->getBody()->getContents()); |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | { |
| 108 | 108 | $file = fopen(self::safeProtocol($filePath), 'w'); |
| 109 | 109 | if ($file === false) { |
| 110 | - throw new Exceptions\InvalidStateException('Open file is failed ' . $filePath); |
|
| 110 | + throw new Exceptions\InvalidStateException('Open file is failed '.$filePath); |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | return $file; |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | |
| 137 | 137 | private static function safeProtocol(string $filename): string |
| 138 | 138 | { |
| 139 | - return SafeStream\Wrapper::Protocol . "://$filename"; |
|
| 139 | + return SafeStream\Wrapper::Protocol."://$filename"; |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | } |