Completed
Push — master ( d19341...3c24ea )
by Sam
02:44
created
src/cli/Configuration/Parser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 		}
40 40
 		catch (ParseException $e)
41 41
 		{
42
-			throw new InvalidConfigurationException('Failed to parse the specified configuration file: ' . $e->getMessage());
42
+			throw new InvalidConfigurationException('Failed to parse the specified configuration file: '.$e->getMessage());
43 43
 		}
44 44
 
45 45
 		// Validate the configuration. We need at least one instance.
Please login to merge, or discard this patch.
src/cli/Message/Factory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 			case AbstractMessage::TYPE_MOST_ACTIVE_WATCHERS_REQUEST:
42 42
 				return new MostActiveWatchersRequest($parameters);
43 43
 			default:
44
-				throw new UnknownRequestException('Unknown message "' . $type . '"');
44
+				throw new UnknownRequestException('Unknown message "'.$type.'"');
45 45
 		}
46 46
 	}
47 47
 
Please login to merge, or discard this patch.
src/cli/Manager/WebSocketManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
 			}
168 168
 			catch (RequestFailedException $e)
169 169
 			{
170
-				$this->logger->critical('The request failed: ' . $e->getMessage());
170
+				$this->logger->critical('The request failed: '.$e->getMessage());
171 171
 			}
172 172
 			catch (UnhandledMessageException $e)
173 173
 			{
Please login to merge, or discard this patch.
src/cli/Manager/StatisticsManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 		}
53 53
 		catch (PropelException $e)
54 54
 		{
55
-			throw new RequestFailedException('A database error occured: ' . $e->getMessage());
55
+			throw new RequestFailedException('A database error occured: '.$e->getMessage());
56 56
 		}
57 57
 
58 58
 		return false;
Please login to merge, or discard this patch.