Completed
Push — master ( 416831...aecf8c )
by Milan
01:43
created
src/Utils/Strings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 		if ($bankCode) {
34 34
 			$account .= '/';
35 35
 		}
36
-		return new Account\Bank($account . $bankCode);
36
+		return new Account\Bank($account.$bankCode);
37 37
 	}
38 38
 
39 39
 	/**
Please login to merge, or discard this patch.
src/Request/Queue.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 					throw $e;
94 94
 				} elseif ($i >= $this->limitLoop) {
95 95
 					fclose($file);
96
-					throw new Fio\QueueLimitException('You have limit up requests to server ' . $this->limitLoop);
96
+					throw new Fio\QueueLimitException('You have limit up requests to server '.$this->limitLoop);
97 97
 				}
98 98
 				self::sleep($tempFile);
99 99
 				$next = TRUE;
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 	{
121 121
 		$key = substr($token, 10, -10);
122 122
 		if (!isset(self::$tokens[$key])) {
123
-			self::$tokens[$key] = $this->tempDir . DIRECTORY_SEPARATOR . md5($key);
123
+			self::$tokens[$key] = $this->tempDir.DIRECTORY_SEPARATOR.md5($key);
124 124
 		}
125 125
 
126 126
 		return self::$tokens[$key];
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 
129 129
 	private static function safeProtocol($filename)
130 130
 	{
131
-		return Utils\SafeStream::PROTOCOL . '://' . $filename;
131
+		return Utils\SafeStream::PROTOCOL.'://'.$filename;
132 132
 	}
133 133
 
134 134
 }
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.