Completed
Push — master ( 0efbad...6e63c6 )
by Maxim
02:11
created
src/errorHandler/ErrorHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         (new Run())->pushHandler(\ENV === 'dev'
16 16
             ? new PrettyPageHandler()
17
-            : function () {
17
+            : function() {
18 18
                 $errorPagePath = $this->getErrorPagePath();
19 19
                 if ($errorPagePath && \file_exists($errorPagePath)) {
20 20
                     echo \file_get_contents($errorPagePath);
Please login to merge, or discard this patch.
src/router/Router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
      */
65 65
     protected function configureDispatcher(): Dispatcher
66 66
     {
67
-        return \FastRoute\simpleDispatcher(function (RouteCollector $collector) {
67
+        return \FastRoute\simpleDispatcher(function(RouteCollector $collector) {
68 68
             foreach ($this->config as $route) {
69 69
                 $collector->addRoute($route[0], $route[1], $route[2]);
70 70
             }
Please login to merge, or discard this patch.