Test Failed
Pull Request — master (#10)
by Anatoly
02:59
created
src/Command/GenerateOpenApiDocumentCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      */
43 43
     protected function execute(InputInterface $input, OutputInterface $output) : int
44 44
     {
45
-        $flags = JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE;
45
+        $flags = JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE;
46 46
 
47 47
         $output->writeln(json_encode($this->container->get('openapi')->toArray(), $flags));
48 48
 
Please login to merge, or discard this patch.
config/container.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 use DI\Container;
4 4
 use DI\ContainerBuilder;
5 5
 
6
-return (function () : Container {
7
-    $env = $_ENV['APP_ENV'] ?? 'dev';
6
+return (function() : Container {
7
+    $env = $_ENV[ 'APP_ENV' ] ?? 'dev';
8 8
 
9 9
     $builder = new ContainerBuilder();
10 10
     $builder->useAutowiring(true);
Please login to merge, or discard this patch.