Completed
Push — master ( d7fc79...487414 )
by Joschi
04:26
created
src/Admin/Infrastructure/App.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -163,12 +163,12 @@
 block discarded – undo
163 163
             return self::$config;
164 164
         }
165 165
         $keyParts = explode('.', $key);
166
-        $config =& self::$config;
166
+        $config = & self::$config;
167 167
         foreach ($keyParts as $keyPart) {
168 168
             if (!array_key_exists($keyPart, $config)) {
169 169
                 throw new \InvalidArgumentException(sprintf('Invalid config key "%s"', $key), 1466179561);
170 170
             }
171
-            $config =& $config[$keyPart];
171
+            $config = & $config[$keyPart];
172 172
         }
173 173
         return $config;
174 174
     }
Please login to merge, or discard this patch.
src/Admin/Infrastructure/Service/DirectoryService.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -100,7 +100,6 @@
 block discarded – undo
100 100
         }
101 101
 
102 102
         return $absolute ?
103
-            $absDataDirectory :
104
-            trim(substr($absDataDirectory, strlen($dataBaseDirectory)), DIRECTORY_SEPARATOR);
103
+            $absDataDirectory : trim(substr($absDataDirectory, strlen($dataBaseDirectory)), DIRECTORY_SEPARATOR);
105 104
     }
106 105
 }
Please login to merge, or discard this patch.
src/Admin/Domain/Vhost/Vhost.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -261,7 +261,7 @@
 block discarded – undo
261 261
     {
262 262
         $secondaryDomains = array_values($this->secondaryDomains);
263 263
         return $excludeWildcards ?
264
-            array_filter($secondaryDomains, function (DomainInterface $domain) {
264
+            array_filter($secondaryDomains, function(DomainInterface $domain) {
265 265
                 return !$domain->isWildcard();
266 266
             }) :
267 267
             $secondaryDomains;
Please login to merge, or discard this patch.