Completed
Branch master (c8760c)
by dima
04:26
created
bootstrap/app.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     {
36 36
         error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_USER_NOTICE);
37 37
     }    
38
-    $whoops->pushHandler(function () {
38
+    $whoops->pushHandler(function() {
39 39
         Response::create('Uh oh, something broke internally.', Response::HTTP_INTERNAL_SERVER_ERROR)->send();
40 40
     });
41 41
 }
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 /**
61 61
  * Routes
62 62
  */
63
-$dispatcher = FastRoute\simpleDispatcher(function (FastRoute\RouteCollector $r) {
63
+$dispatcher = FastRoute\simpleDispatcher(function(FastRoute\RouteCollector $r) {
64 64
     $routes = require __DIR__ . '/routes.php';
65 65
     foreach ($routes as $route) {
66 66
         $r->addRoute($route[0], $route[1], $route[2]);
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,7 @@
 block discarded – undo
30 30
     if (version_compare(PHP_VERSION, '5.3', '>='))
31 31
     {
32 32
         error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED);
33
-    }
34
-    else
33
+    } else
35 34
     {
36 35
         error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_USER_NOTICE);
37 36
     }    
Please login to merge, or discard this patch.