Test Setup Failed
Push — master ( a7273d...dbdd0c )
by alpha
55s
created
src/AliyunAdapter.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->config->getDomain() . '/' . ltrim($object, '/');
40
+        return $this->config->getDomain().'/'.ltrim($object, '/');
41 41
     }
42 42
 
43 43
     /**
Please login to merge, or discard this patch.
src/AliyunServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,12 +12,12 @@
 block discarded – undo
12 12
     public function boot()
13 13
     {
14 14
         $this->mergeConfigFrom(
15
-            __DIR__ . '/../config/config.php',
15
+            __DIR__.'/../config/config.php',
16 16
             'filesystems.disks.oss'
17 17
         );
18 18
 
19 19
         $this->app->make('filesystem')
20
-            ->extend('oss', function ($app, array $config) {
20
+            ->extend('oss', function($app, array $config) {
21 21
                 $aliyunConfig = new AliyunConfig($config);
22 22
 
23 23
                 $ossClient = new OssClient($aliyunConfig->get('access_key_id'), $aliyunConfig->get('access_key_secret'), $aliyunConfig->getRequestEndpoint(), $aliyunConfig->get('is_cname', false), $aliyunConfig->get('security_token', null), $aliyunConfig->get('request_proxy', null));
Please login to merge, or discard this patch.