Passed
Push — master ( eb90b5...21801a )
by Petr
02:33
created
php-src/Sources/AFiles.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
             throw new FilesException($targetFileExistsErr);
81 81
         }
82 82
 
83
-        return $this->dataOverwriteCopy( $source, $target, $unlinkErr, $copyErr);
83
+        return $this->dataOverwriteCopy($source, $target, $unlinkErr, $copyErr);
84 84
     }
85 85
 
86 86
     /**
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
             throw new FilesException($targetFileExistsErr);
132 132
         }
133 133
 
134
-        return $this->dataOverwriteRename( $source, $target, $unlinkErr, $copyErr);
134
+        return $this->dataOverwriteRename($source, $target, $unlinkErr, $copyErr);
135 135
     }
136 136
 
137 137
     /**
Please login to merge, or discard this patch.
php-src/Graphics/Format/Webp.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
         $this->setImLang($lang);
24 24
         if (!function_exists('imagecreatefromwebp') || !function_exists('imagewebp')) {
25 25
             // @codeCoverageIgnoreStart
26
-            throw new ImagesException($this->getImLang()->imImageMagicLibNotPresent(),ImagesException::FORMAT_NO_LIBRARY);
26
+            throw new ImagesException($this->getImLang()->imImageMagicLibNotPresent(), ImagesException::FORMAT_NO_LIBRARY);
27 27
         }
28 28
         // @codeCoverageIgnoreEnd
29 29
     }
Please login to merge, or discard this patch.
php-src/Graphics/Format/Autodetect.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     {
33 33
         $content = @file_get_contents($path);
34 34
         if (empty($content)) {
35
-            throw new ImagesException($this->getImLang()->imCannotCreateFromResource(),ImagesException::FORMAT_AUTO_NO_FILE);
35
+            throw new ImagesException($this->getImLang()->imCannotCreateFromResource(), ImagesException::FORMAT_AUTO_NO_FILE);
36 36
         }
37 37
         $result = @imagecreatefromstring($content);
38 38
         if (false === $result) {
Please login to merge, or discard this patch.