Passed
Push — master ( a91c75...3d6eb6 )
by Caen
03:47 queued 12s
created
packages/framework/src/Foundation/Filesystem.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.
packages/framework/src/Foundation/Hyperlinks.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@
 block discarded – undo
177 177
      */
178 178
     public function hasSiteUrl(): bool
179 179
     {
180
-        return ! blank(config('site.url'));
180
+        return !blank(config('site.url'));
181 181
     }
182 182
 
183 183
     /**
Please login to merge, or discard this patch.