Passed
Pull Request — master (#16)
by Anton
03:08
created
www/engine/Framework/Classes/Image/Image.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,9 @@
 block discarded – undo
19 19
 
20 20
 		private static function output($image, string $mime, callable $outputter, array $params = []) : bool {
21 21
 
22
-			if (!is_resource($image)) return false;
22
+			if (!is_resource($image)) {
23
+				return false;
24
+			}
23 25
 
24 26
 			Headers::sendNoCache(); Headers::sendContent($mime);
25 27
 
Please login to merge, or discard this patch.