Test Setup Failed
Push — master ( f2fd28...09e290 )
by Xu
39:23
created
src/filesystem/adapters/FtpAdapter.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -89,18 +89,18 @@
 block discarded – undo
89 89
     {
90 90
         $config = [];
91 91
         foreach ([
92
-                     'host',
93
-                     'port',
94
-                     'username',
95
-                     'password',
96
-                     'ssl',
97
-                     'timeout',
98
-                     'root',
99
-                     'permPrivate',
100
-                     'permPublic',
101
-                     'passive',
102
-                     'transferMode',
103
-                 ] as $name) {
92
+                        'host',
93
+                        'port',
94
+                        'username',
95
+                        'password',
96
+                        'ssl',
97
+                        'timeout',
98
+                        'root',
99
+                        'permPrivate',
100
+                        'permPublic',
101
+                        'passive',
102
+                        'transferMode',
103
+                    ] as $name) {
104 104
             if ($this->$name !== null) {
105 105
                 $config[$name] = $this->$name;
106 106
             }
Please login to merge, or discard this patch.
src/filesystem/adapters/SftpAdapter.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -90,16 +90,16 @@
 block discarded – undo
90 90
         $config = [];
91 91
 
92 92
         foreach ([
93
-                     'host',
94
-                     'port',
95
-                     'username',
96
-                     'password',
97
-                     'timeout',
98
-                     'root',
99
-                     'privateKey',
100
-                     'permPrivate',
101
-                     'permPublic',
102
-                 ] as $name) {
93
+                        'host',
94
+                        'port',
95
+                        'username',
96
+                        'password',
97
+                        'timeout',
98
+                        'root',
99
+                        'privateKey',
100
+                        'permPrivate',
101
+                        'permPublic',
102
+                    ] as $name) {
103 103
             if ($this->$name !== null) {
104 104
                 $config[$name] = $this->$name;
105 105
             }
Please login to merge, or discard this patch.
src/filesystem/Cache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
     {
71 71
         $contents = $this->getForStorage();
72 72
 
73
-        if (! is_null($this->expire)) {
73
+        if (!is_null($this->expire)) {
74 74
             $this->cache->set($this->key, $contents, $this->expire);
75 75
         } else {
76 76
             $this->cache->set($this->key, $contents);
Please login to merge, or discard this patch.