Completed
Push — master ( d7ae0c...bbd5ab )
by Joschi
21:28 queued 11:31
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.
src/Admin/Infrastructure/Service/PersistenceService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
     public function __construct(
88 88
         PersistenceAdapterFactoryInterface $persistenceAdapterFactory,
89 89
         ServiceServiceInterface $serviceService
90
-    ){
90
+    ) {
91 91
         $this->persistenceAdapterFactory = $persistenceAdapterFactory;
92 92
         $this->serviceService = $serviceService;
93 93
     }
Please login to merge, or discard this patch.
src/Admin/Infrastructure/Service/AbstractShellService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
     {
76 76
         $command = Binary::sudo($this->config['service']);
77 77
         array_map(
78
-            function ($argument) use ($command) {
78
+            function($argument) use ($command) {
79 79
                 $command->addArg($argument);
80 80
             },
81 81
             $arguments
Please login to merge, or discard this patch.