Passed
Push — master ( 3b77f2...38ac40 )
by Caen
03:35
created
packages/framework/src/HydeKernel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -232,11 +232,11 @@
 block discarded – undo
232 232
      */
233 233
     public function copy(string $from, string $to, bool $force = false): bool|int
234 234
     {
235
-        if (! file_exists($from)) {
235
+        if (!file_exists($from)) {
236 236
             return 404;
237 237
         }
238 238
 
239
-        if (file_exists($to) && ! $force) {
239
+        if (file_exists($to) && !$force) {
240 240
             return 409;
241 241
         }
242 242
 
Please login to merge, or discard this patch.