Test Setup Failed
Push — master ( 8e5ef0...dc4af7 )
by alpha
08:20
created
src/Macros/AppendFile.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
     public function macro(): Closure
19 19
     {
20
-        return function (string $path, string $content, int $position = 0, array $options = []) {
20
+        return function(string $path, string $content, int $position = 0, array $options = []) {
21 21
             try {
22 22
                 /**
23 23
                  * @var FilesystemAdapter $this
Please login to merge, or discard this patch.
src/Macros/AppendObject.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
     public function macro(): Closure
19 19
     {
20
-        return function (string $path, string $content, int $position = 0, array $options = []) {
20
+        return function(string $path, string $content, int $position = 0, array $options = []) {
21 21
             try {
22 22
                 /**
23 23
                  * @var FilesystemAdapter $this
Please login to merge, or discard this patch.
src/AliyunConfig.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     public function getDomain()
16 16
     {
17 17
         if ($this->get('domain')) {
18
-            return $this->getProtocol() . '://' . $this->get('domain');
18
+            return $this->getProtocol().'://'.$this->get('domain');
19 19
         }
20 20
         return $this->getEndpointDomain();
21 21
     }
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     protected function getEndpointDomain()
27 27
     {
28
-        return $this->getProtocol() . '://' . $this->get('bucket') . '.' . $this->get('endpoint');
28
+        return $this->getProtocol().'://'.$this->get('bucket').'.'.$this->get('endpoint');
29 29
     }
30 30
 
31 31
     /**
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     protected function getInternalDomain()
35 35
     {
36
-        return $this->getProtocol() . '://' . $this->get('bucket') . '.' . $this->get('internal');
36
+        return $this->getProtocol().'://'.$this->get('bucket').'.'.$this->get('internal');
37 37
     }
38 38
 
39 39
     /**
Please login to merge, or discard this patch.