Completed
Push — master ( 71283c...cd1b64 )
by frey
03:20
created
src/Client/LibcurlWrapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 
68 68
     public function performSendingRequest()
69 69
     {
70
-        for (; ;) {
70
+        for (;;) {
71 71
             $active = null;
72 72
 
73 73
             $mrc = $this->doCurlMulti();
Please login to merge, or discard this patch.
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 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -26,15 +26,15 @@
 block discarded – undo
26 26
         }
27 27
 
28 28
         $this->app->make('filesystem')
29
-                  ->extend('cosv4', function ($app, $config) {
30
-                      $flysystem = new Filesystem(new Adapter($config));
29
+                    ->extend('cosv4', function ($app, $config) {
30
+                        $flysystem = new Filesystem(new Adapter($config));
31 31
 
32
-                      $flysystem->addPlugin(new PutRemoteFile());
33
-                      $flysystem->addPlugin(new PutRemoteFileAs());
34
-                      $flysystem->addPlugin(new GetUrl());
32
+                        $flysystem->addPlugin(new PutRemoteFile());
33
+                        $flysystem->addPlugin(new PutRemoteFileAs());
34
+                        $flysystem->addPlugin(new GetUrl());
35 35
 
36
-                      return $flysystem;
37
-                  });
36
+                        return $flysystem;
37
+                    });
38 38
     }
39 39
 
40 40
     /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         }
27 27
 
28 28
         $this->app->make('filesystem')
29
-                  ->extend('cosv4', function ($app, $config) {
29
+                  ->extend('cosv4', function($app, $config) {
30 30
                       $flysystem = new Filesystem(new Adapter($config));
31 31
 
32 32
                       $flysystem->addPlugin(new PutRemoteFile());
Please login to merge, or discard this patch.