Test Setup Failed
Push — master ( 71a4b2...4cd793 )
by alpha
05:29 queued 04:33
created
src/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         );
18 18
 
19 19
         $this->app->make('filesystem')
20
-            ->extend('aliyun', function ($app, array $config) {
20
+            ->extend('aliyun', function($app, array $config) {
21 21
                 $ossConfig = new Config($config);
22 22
                 $ossClient = $app->make(OssClient::class, $ossConfig->getOssClientParameters());
23 23
                 $ossClient->setUseSSL($ossConfig->get('use_ssl', false));
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
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     public function getUrl(string $path): string
38 38
     {
39 39
         $object = $this->prefixer->prefixPath($path);
40
-        return $this->ossConfig->getUrlDomain() . '/' . ltrim($object, '/');
40
+        return $this->ossConfig->getUrlDomain().'/'.ltrim($object, '/');
41 41
     }
42 42
 
43 43
     /**
Please login to merge, or discard this patch.