@@ -400,7 +400,7 @@ |
||
400 | 400 | file_put_contents($temporaryPath, $content); |
401 | 401 | |
402 | 402 | // The file is automatically removed when closed, or when the script ends. |
403 | - register_shutdown_function(function () use ($temporaryPath) { |
|
403 | + register_shutdown_function(function() use ($temporaryPath) { |
|
404 | 404 | unlink($temporaryPath); |
405 | 405 | }); |
406 | 406 |
@@ -27,7 +27,7 @@ |
||
27 | 27 | } |
28 | 28 | |
29 | 29 | $this->app->make('filesystem') |
30 | - ->extend('cosv4', function ($app, $config) { |
|
30 | + ->extend('cosv4', function($app, $config) { |
|
31 | 31 | $cosApi = new Api($config); |
32 | 32 | $flysystem = new Filesystem(new Adapter($cosApi, $config)); |
33 | 33 |