Passed
Push — master ( 0595aa...1ed9d2 )
by Sergio
01:27
created
src/Services/JsonCollectionParser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 			throw $e;
44 44
 		}
45 45
 
46
-		if( ! fclose($stream)){
46
+		if ( ! fclose($stream)) {
47 47
 			throw new IncompleteParseException();
48 48
 		}
49 49
 	}
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 	{
59 59
 		$stream = @fopen($filePath, 'r');
60 60
 		if (false === $stream) {
61
-			throw new \Exception('Unable to open file for read: ' . $filePath);
61
+			throw new \Exception('Unable to open file for read: '.$filePath);
62 62
 		}
63 63
 
64 64
 		return $stream;
Please login to merge, or discard this patch.