Completed
Push — master ( a21f4c...46ab99 )
by frey
04:41 queued 02:17
created
src/Adapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -400,7 +400,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         }
36 36
 
37 37
         $this->app->make('filesystem')
38
-                  ->extend('cosv4', function ($app, $config) {
38
+                  ->extend('cosv4', function($app, $config) {
39 39
                       return new Filesystem(new Adapter($config));
40 40
                   })
41 41
                   ->disk('cosv4')
Please login to merge, or discard this patch.