Completed
Push — master ( 36f767...4e930b )
by Milan
03:53
created
src/Request/Queue.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 					throw $e;
86 86
 				} elseif ($i >= $this->limitLoop) {
87 87
 					fclose($file);
88
-					throw new Fio\QueueLimitException('You have limit up requests to server ' . $this->limitLoop);
88
+					throw new Fio\QueueLimitException('You have limit up requests to server '.$this->limitLoop);
89 89
 				}
90 90
 				self::sleep($tempFile);
91 91
 				$next = TRUE;
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 	{
113 113
 		$key = substr($token, 10, -10);
114 114
 		if (!isset(self::$tokens[$key])) {
115
-			self::$tokens[$key] = sys_get_temp_dir() . DIRECTORY_SEPARATOR . md5($key);
115
+			self::$tokens[$key] = sys_get_temp_dir().DIRECTORY_SEPARATOR.md5($key);
116 116
 		}
117 117
 
118 118
 		return self::$tokens[$key];
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
 	private static function safeProtocol($filename)
122 122
 	{
123
-		return Utils\SafeStream::PROTOCOL . '://' . $filename;
123
+		return Utils\SafeStream::PROTOCOL.'://'.$filename;
124 124
 	}
125 125
 
126 126
 }
Please login to merge, or discard this patch.