Passed
Pull Request — master (#6)
by Alex
12:39
created
src/Factory/Console/DoctrineApplicationFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,11 +72,11 @@  discard block
 block discarded – undo
72 72
         }
73 73
 
74 74
         if (isset($options['auto_exit'])) {
75
-            $application->setAutoExit((bool)$options['auto_exit']);
75
+            $application->setAutoExit((bool) $options['auto_exit']);
76 76
         }
77 77
 
78 78
         if (isset($options['catch_exceptions'])) {
79
-            $application->setCatchExceptions((bool)$options['catch_exceptions']);
79
+            $application->setCatchExceptions((bool) $options['catch_exceptions']);
80 80
         }
81 81
 
82 82
         if (isset($options['default_command'])) {
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      */
103 103
     private function getCommandLoader(
104 104
         ContainerInterface $container,
105
-        CommandLoaderInterface|string $commandLoader,
105
+        CommandLoaderInterface | string $commandLoader,
106 106
         string $serviceName
107 107
     ): CommandLoaderInterface {
108 108
         if (is_string($commandLoader)) {
Please login to merge, or discard this patch.
src/Factory/Console/Helper/ConnectionHelperFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     /**
60 60
      * @throws ServiceNotCreatedException
61 61
      */
62
-    private function resolveConnection(ContainerInterface $container, string $serviceName): Connection|string|null
62
+    private function resolveConnection(ContainerInterface $container, string $serviceName): Connection | string | null
63 63
     {
64 64
         try {
65 65
             $arguments = new ArgvInput();
Please login to merge, or discard this patch.