Completed
Push — master ( c3ce7a...6a9e91 )
by Milan
02:09
created
src/FioPay.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	{
116 116
 		$this->language = strtolower($lang);
117 117
 		if (!in_array($this->language, self::$langs)) {
118
-			throw new InvalidArgumentException($this->language . ' avaible are ' . implode(', ', self::$langs));
118
+			throw new InvalidArgumentException($this->language.' avaible are '.implode(', ', self::$langs));
119 119
 		}
120 120
 		return $this;
121 121
 	}
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 	/** @return string */
124 124
 	private function getUrl()
125 125
 	{
126
-		return self::REST_URL . 'import/';
126
+		return self::REST_URL.'import/';
127 127
 	}
128 128
 
129 129
 	/**
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 		$extension = strtolower($extension);
138 138
 		static $extensions = ['xml', 'abo'];
139 139
 		if (!in_array($extension, $extensions)) {
140
-			throw new InvalidArgumentException('Unsupported file upload format: ' . $extension . ' avaible are ' . implode(', ', $extensions));
140
+			throw new InvalidArgumentException('Unsupported file upload format: '.$extension.' avaible are '.implode(', ', $extensions));
141 141
 		}
142 142
 		$this->uploadExtension = $extension;
143 143
 		return $this;
Please login to merge, or discard this patch.
src/Request/Queue.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
 	public function download($token, $url)
60 60
 	{
61
-		return $this->request($token, function (GuzzleHttp\Client $client) use ($url) {
61
+		return $this->request($token, function(GuzzleHttp\Client $client) use ($url) {
62 62
 			return $client->request('GET', $url, $this->downloadOptions);
63 63
 		});
64 64
 	}
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 		$newPost[] = ['name' => 'file', 'contents' => fopen($filename, 'r')];
74 74
 
75 75
 		/* @var $response GuzzleHttp\Psr7\Stream */
76
-		$response = $this->request($token, function (GuzzleHttp\Client $client) use ($url, $newPost) {
76
+		$response = $this->request($token, function(GuzzleHttp\Client $client) use ($url, $newPost) {
77 77
 			return $client->request('POST', $url, [GuzzleHttp\RequestOptions::MULTIPART => $newPost]);
78 78
 		});
79 79
 		return new Pay\XMLResponse($response->getContents());
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 					throw $e;
97 97
 				} elseif ($i >= $this->limitLoop) {
98 98
 					fclose($file);
99
-					throw new Fio\QueueLimitException('You have limit up requests to server ' . $this->limitLoop);
99
+					throw new Fio\QueueLimitException('You have limit up requests to server '.$this->limitLoop);
100 100
 				}
101 101
 				self::sleep($tempFile);
102 102
 				$next = true;
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 	{
124 124
 		$key = substr($token, 10, -10);
125 125
 		if (!isset(self::$tokens[$key])) {
126
-			self::$tokens[$key] = $this->tempDir . DIRECTORY_SEPARATOR . md5($key);
126
+			self::$tokens[$key] = $this->tempDir.DIRECTORY_SEPARATOR.md5($key);
127 127
 		}
128 128
 
129 129
 		return self::$tokens[$key];
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 
132 132
 	private static function safeProtocol($filename)
133 133
 	{
134
-		return Utils\SafeStream::PROTOCOL . '://' . $filename;
134
+		return Utils\SafeStream::PROTOCOL.'://'.$filename;
135 135
 	}
136 136
 
137 137
 }
Please login to merge, or discard this patch.
src/Response/Read/TransactionAbstract.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 		if (array_key_exists($name, $this->properties)) {
28 28
 			return $this->properties[$name];
29 29
 		}
30
-		throw new Fio\TransactionPropertyException('Property does not exists. ' . $name);
30
+		throw new Fio\TransactionPropertyException('Property does not exists. '.$name);
31 31
 	}
32 32
 
33 33
 	public function clearTemporaryValues()
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
 	public function bindProperty($name, $type, $value)
39 39
 	{
40
-		$method = 'set' . ucfirst($name);
40
+		$method = 'set'.ucfirst($name);
41 41
 		if (method_exists($this, $method)) {
42 42
 			$value = $this->{$method}($value);
43 43
 		} elseif ($value !== null) {
Please login to merge, or discard this patch.