@@ -232,11 +232,11 @@ |
||
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 |