Completed
Pull Request — master (#48)
by Milan
54s
created
src/Account/AccountCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Account/Bank.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Utils/Fio.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
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
 	}
Please login to merge, or discard this patch.
src/FioRead.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 	}
Please login to merge, or discard this patch.
src/Utils/Queue.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/FioPay.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
 	/**
93 93
 	 * @param string|Pay\Payment\Property|null $filename string is filepath or xml content
94 94
 	 */
95
-	public function send(string|Pay\Payment\Property|null $filename = null)
95
+	public function send(string | Pay\Payment\Property | null $filename = null)
96 96
 	{
97 97
 		if ($filename instanceof Pay\Payment\Property) {
98 98
 			$this->xmlFile->setData($filename);
Please login to merge, or discard this patch.