Completed
Pull Request — master (#14)
by frey
12:43
created
src/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Client/Http.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,8 +78,8 @@
 block discarded – undo
78 78
                 curl_setopt(self::$_curlHandler, CURLOPT_SSLVERSION, 4);
79 79
             }
80 80
         } elseif ($ssl) {
81
-            curl_setopt(self::$_curlHandler, CURLOPT_SSL_VERIFYPEER, false);   //true any ca
82
-            curl_setopt(self::$_curlHandler, CURLOPT_SSL_VERIFYHOST, 1);       //check only host
81
+            curl_setopt(self::$_curlHandler, CURLOPT_SSL_VERIFYPEER, false); //true any ca
82
+            curl_setopt(self::$_curlHandler, CURLOPT_SSL_VERIFYHOST, 1); //check only host
83 83
             if (isset($rq['ssl_version'])) {
84 84
                 curl_setopt(self::$_curlHandler, CURLOPT_SSLVERSION, $rq['ssl_version']);
85 85
             } else {
Please login to merge, or discard this patch.