@@ -25,7 +25,7 @@ |
||
| 25 | 25 | __DIR__.'/filesystems.php' => config_path('filesystems.php'), |
| 26 | 26 | ]); |
| 27 | 27 | |
| 28 | - Storage::extend('cosv3', function ($app, $config) { |
|
| 28 | + Storage::extend('cosv3', function($app, $config) { |
|
| 29 | 29 | return new Filesystem(new Adapter($config)); |
| 30 | 30 | }); |
| 31 | 31 | |
@@ -411,7 +411,7 @@ |
||
| 411 | 411 | file_put_contents($temporaryPath, $content); |
| 412 | 412 | |
| 413 | 413 | // The file is automatically removed when closed, or when the script ends. |
| 414 | - register_shutdown_function(function () use ($temporaryPath) { |
|
| 414 | + register_shutdown_function(function() use ($temporaryPath) { |
|
| 415 | 415 | unlink($temporaryPath); |
| 416 | 416 | }); |
| 417 | 417 | |