Test Failed
Push — master ( 267017...2fc114 )
by alpha
03:07
created
src/ServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         );
24 24
 
25 25
         $this->app->make('filesystem')
26
-            ->extend('aliyun', function ($app, array $config) {
26
+            ->extend('aliyun', function($app, array $config) {
27 27
                 $client = $this->makeOssClient($app, $config);
28 28
                 $adapter = new AliyunOssAdapter($client, $config);
29 29
                 $filesystem = new Filesystem($adapter, new Config(['disable_asserts' => true]));
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
     public function register()
52 52
     {
53
-        $this->app->singleton('aliyun-oss.client', function ($app) {
53
+        $this->app->singleton('aliyun-oss.client', function($app) {
54 54
             $config = $app->get('config')->get('filesystems.disks.aliyun');
55 55
             return $this->makeOssClient($app, $config);
56 56
         });
Please login to merge, or discard this patch.