Completed
Push — master ( 91a6b3...01a195 )
by Neomerx
04:40
created
src/Application/Application.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     }
133 133
 
134 134
     /**
135
-     * @return callable
135
+     * @return string[]
136 136
      */
137 137
     public static function getDefaultRequestFactory()
138 138
     {
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
     /**
224 224
      * @param Closure            $handler
225 225
      * @param ContainerInterface $userContainer
226
-     * @param array|null         $globalMiddleware
226
+     * @param callable[]         $globalMiddleware
227 227
      * @param array|null         $routeMiddleware
228 228
      *
229 229
      * @return Closure
Please login to merge, or discard this patch.
src/Config/ConfigManager.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
         $configsPath = realpath($configsPath);
77 77
 
78
-        foreach (glob($configsPath . DIRECTORY_SEPARATOR . $globConfigPatterns, $this->getGlobFlags()) as $fileName) {
78
+        foreach (glob($configsPath.DIRECTORY_SEPARATOR.$globConfigPatterns, $this->getGlobFlags()) as $fileName) {
79 79
             /** @noinspection PhpIncludeInspection */
80 80
             require_once $fileName;
81 81
         }
Please login to merge, or discard this patch.