Test Failed
Pull Request — master (#10)
by Anatoly
11:06
created
config/bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,14 +3,14 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
config/container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.