@@ -3,14 +3,14 @@ |
||
3 | 3 | use Doctrine\Common\Annotations\AnnotationRegistry; |
4 | 4 | use Symfony\Component\Dotenv\Dotenv; |
5 | 5 | |
6 | -(function () { |
|
6 | +(function() { |
|
7 | 7 | $root = realpath(__DIR__ . '/..'); |
8 | 8 | |
9 | 9 | chdir($root); |
10 | 10 | setlocale(LC_ALL, 'C.UTF-8'); |
11 | 11 | |
12 | 12 | // Enables strict development mode... |
13 | - set_error_handler(function ($severity, $message, $file, $line) { |
|
13 | + set_error_handler(function($severity, $message, $file, $line) { |
|
14 | 14 | throw new ErrorException($message, 0, $severity, $file, $line); |
15 | 15 | }); |
16 | 16 |
@@ -3,7 +3,7 @@ |
||
3 | 3 | use DI\Container; |
4 | 4 | use DI\ContainerBuilder; |
5 | 5 | |
6 | -return (function () : Container { |
|
6 | +return (function() : Container { |
|
7 | 7 | $env = getenv('APP_ENV') ?: 'dev'; |
8 | 8 | $root = realpath(__DIR__ . '/..'); |
9 | 9 |