Completed
Push — master ( 66f11c...50c6b8 )
by Joschi
03:53
created
src/Admin/Domain/Vhost/Vhost.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,6 @@
 block discarded – undo
136 136
      *
137 137
      * @param DomainInterface $primaryDomain Primary domain
138 138
      * @param string $docroot Document root
139
-     * @param int $port Port
140 139
      */
141 140
     public function __construct(DomainInterface $primaryDomain, $docroot)
142 141
     {
Please login to merge, or discard this patch.
src/Admin/Domain/Vhost/VhostInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,8 @@
 block discarded – undo
50 50
      * Virtual host constructor
51 51
      *
52 52
      * @param DomainInterface $primaryDomain Primary domain
53
-     * @param string $docroot Document root
53
+     * @param string $docroo Document root
54
+     * @return void
54 55
      */
55 56
     public function __construct(DomainInterface $primaryDomain, $docroo);
56 57
 
Please login to merge, or discard this patch.
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.