Passed
Pull Request — master (#828)
by Maxim
06:41
created
src/Boot/src/Memory.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     public function __construct(
20 20
         string $directory,
21 21
         private readonly FilesInterface $files
22
-    ) {
22
+    ){
23 23
         $this->directory = \rtrim($directory, '/');
24 24
     }
25 25
 
@@ -30,13 +30,13 @@  discard block
 block discarded – undo
30 30
     {
31 31
         $filename = $this->getFilename($section);
32 32
 
33
-        if (!\file_exists($filename)) {
33
+        if (!\file_exists($filename)){
34 34
             return null;
35 35
         }
36 36
 
37
-        try {
37
+        try{
38 38
             return include($filename);
39
-        } catch (\Throwable) {
39
+        }catch (\Throwable){
40 40
             return null;
41 41
         }
42 42
     }
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     {
46 46
         $this->files->write(
47 47
             $this->getFilename($section),
48
-            '<?php return ' . \var_export($data, true) . ';',
48
+            '<?php return '.\var_export($data, true).';',
49 49
             FilesInterface::RUNTIME,
50 50
             true
51 51
         );
Please login to merge, or discard this patch.
Braces   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,13 +30,17 @@
 block discarded – undo
30 30
     {
31 31
         $filename = $this->getFilename($section);
32 32
 
33
-        if (!\file_exists($filename)) {
33
+        if (!\file_exists($filename))
34
+        {
34 35
             return null;
35 36
         }
36 37
 
37
-        try {
38
+        try
39
+        {
38 40
             return include($filename);
39
-        } catch (\Throwable) {
41
+        }
42
+        catch (\Throwable)
43
+        {
40 44
             return null;
41 45
         }
42 46
     }
Please login to merge, or discard this patch.
src/Boot/src/Injector/EnumInjector.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -22,13 +22,13 @@  discard block
 block discarded – undo
22 22
         private readonly InvokerInterface $invoker,
23 23
         private readonly BinderInterface $binder,
24 24
         private readonly AttributeReader $reader
25
-    ) {
25
+    ){
26 26
     }
27 27
 
28 28
     public function createInjection(\ReflectionClass $class, string $context = null): UnitEnum
29 29
     {
30 30
         $attribute = $this->reader->firstClassMetadata($class, ProvideFrom::class);
31
-        if ($attribute === null) {
31
+        if ($attribute === null){
32 32
             throw new InjectionException(
33 33
                 \sprintf(
34 34
                     'Class `%s` should contain `%s` attribute with defined detector method.',
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
      */
63 63
     private function validateClass(\ReflectionClass $class, ProvideFrom $attribute): void
64 64
     {
65
-        if (!$class->isEnum()) {
65
+        if (!$class->isEnum()){
66 66
             throw new InjectionException(
67 67
                 \sprintf(
68 68
                     'Class `%s` should be an enum.',
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             );
72 72
         }
73 73
 
74
-        if (!$class->hasMethod($attribute->method)) {
74
+        if (!$class->hasMethod($attribute->method)){
75 75
             throw new InjectionException(
76 76
                 \sprintf(
77 77
                     'Class `%s` does not contain `%s` method.',
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             );
82 82
         }
83 83
 
84
-        if (!$class->getMethod($attribute->method)->isStatic()) {
84
+        if (!$class->getMethod($attribute->method)->isStatic()){
85 85
             throw new InjectionException(
86 86
                 \sprintf(
87 87
                     'Class method `%s::%s` should be static.',
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,7 +28,8 @@  discard block
 block discarded – undo
28 28
     public function createInjection(\ReflectionClass $class, string $context = null): UnitEnum
29 29
     {
30 30
         $attribute = $this->reader->firstClassMetadata($class, ProvideFrom::class);
31
-        if ($attribute === null) {
31
+        if ($attribute === null)
32
+        {
32 33
             throw new InjectionException(
33 34
                 \sprintf(
34 35
                     'Class `%s` should contain `%s` attribute with defined detector method.',
@@ -62,7 +63,8 @@  discard block
 block discarded – undo
62 63
      */
63 64
     private function validateClass(\ReflectionClass $class, ProvideFrom $attribute): void
64 65
     {
65
-        if (!$class->isEnum()) {
66
+        if (!$class->isEnum())
67
+        {
66 68
             throw new InjectionException(
67 69
                 \sprintf(
68 70
                     'Class `%s` should be an enum.',
@@ -71,7 +73,8 @@  discard block
 block discarded – undo
71 73
             );
72 74
         }
73 75
 
74
-        if (!$class->hasMethod($attribute->method)) {
76
+        if (!$class->hasMethod($attribute->method))
77
+        {
75 78
             throw new InjectionException(
76 79
                 \sprintf(
77 80
                     'Class `%s` does not contain `%s` method.',
@@ -81,7 +84,8 @@  discard block
 block discarded – undo
81 84
             );
82 85
         }
83 86
 
84
-        if (!$class->getMethod($attribute->method)->isStatic()) {
87
+        if (!$class->getMethod($attribute->method)->isStatic())
88
+        {
85 89
             throw new InjectionException(
86 90
                 \sprintf(
87 91
                     'Class method `%s::%s` should be static.',
Please login to merge, or discard this patch.
src/Boot/src/Injector/ProvideFrom.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 {
12 12
     public function __construct(
13 13
         public readonly string $method
14
-    ) {
14
+    ){
15 15
     }
16 16
 }
Please login to merge, or discard this patch.
src/Boot/src/Bootloader/ConfigurationBootloader.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         ContainerInterface $container,
37 37
         private readonly DirectoriesInterface $directories,
38 38
         private readonly BinderInterface $binder
39
-    ) {
39
+    ){
40 40
         $this->loaders = [
41 41
             'php' => $container->get(PhpLoader::class),
42 42
             'json' => $container->get(JsonLoader::class),
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     public function addLoader(string $ext, FileLoaderInterface $loader): void
49 49
     {
50
-        if (!isset($this->loaders[$ext]) || $this->loaders[$ext]::class !== $loader::class) {
50
+        if (!isset($this->loaders[$ext]) || $this->loaders[$ext]::class !== $loader::class){
51 51
             $this->loaders[$ext] = $loader;
52 52
             $this->binder->bindSingleton(ConfigManager::class, $this->createConfigManager());
53 53
         }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,8 @@
 block discarded – undo
47 47
 
48 48
     public function addLoader(string $ext, FileLoaderInterface $loader): void
49 49
     {
50
-        if (!isset($this->loaders[$ext]) || $this->loaders[$ext]::class !== $loader::class) {
50
+        if (!isset($this->loaders[$ext]) || $this->loaders[$ext]::class !== $loader::class)
51
+        {
51 52
             $this->loaders[$ext] = $loader;
52 53
             $this->binder->bindSingleton(ConfigManager::class, $this->createConfigManager());
53 54
         }
Please login to merge, or discard this patch.
src/Boot/src/Finalizer.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     {
27 27
         $this->dispatcher?->dispatch(new Finalizing($this));
28 28
 
29
-        foreach ($this->finalizers as $finalizer) {
29
+        foreach ($this->finalizers as $finalizer){
30 30
             \call_user_func($finalizer, $terminate);
31 31
         }
32 32
     }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,8 @@
 block discarded – undo
26 26
     {
27 27
         $this->dispatcher?->dispatch(new Finalizing($this));
28 28
 
29
-        foreach ($this->finalizers as $finalizer) {
29
+        foreach ($this->finalizers as $finalizer)
30
+        {
30 31
             \call_user_func($finalizer, $terminate);
31 32
         }
32 33
     }
Please login to merge, or discard this patch.
src/Boot/src/AbstractKernel.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         protected readonly ExceptionHandlerInterface $exceptionHandler,
60 60
         protected readonly BootloadManagerInterface $bootloader,
61 61
         array $directories
62
-    ) {
62
+    ){
63 63
         $container->bindSingleton(ExceptionHandlerInterface::class, $exceptionHandler);
64 64
         $container->bindSingleton(ExceptionRendererInterface::class, $exceptionHandler);
65 65
         $container->bindSingleton(ExceptionReporterInterface::class, $exceptionHandler);
@@ -98,17 +98,17 @@  discard block
 block discarded – undo
98 98
     final public static function create(
99 99
         array $directories,
100 100
         bool $handleErrors = true,
101
-        ExceptionHandlerInterface|string|null $exceptionHandler = null,
101
+        ExceptionHandlerInterface | string | null $exceptionHandler = null,
102 102
         Container $container = new Container(),
103 103
         ?BootloadManagerInterface $bootloadManager = null
104 104
     ): static {
105 105
         $exceptionHandler ??= ExceptionHandler::class;
106 106
 
107
-        if (\is_string($exceptionHandler)) {
107
+        if (\is_string($exceptionHandler)){
108 108
             $exceptionHandler = $container->make($exceptionHandler);
109 109
         }
110 110
 
111
-        if ($handleErrors) {
111
+        if ($handleErrors){
112 112
             $exceptionHandler->register();
113 113
         }
114 114
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 
144 144
         $this->fireCallbacks($this->runningCallbacks);
145 145
 
146
-        try {
146
+        try{
147 147
             // will protect any against env overwrite action
148 148
             $this->container->runScope(
149 149
                 [EnvironmentInterface::class => $environment],
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
                     $this->fireCallbacks($this->bootstrappedCallbacks);
155 155
                 }
156 156
             );
157
-        } catch (\Throwable $e) {
157
+        }catch (\Throwable $e){
158 158
             $this->exceptionHandler->handleGlobalException($e);
159 159
 
160 160
             return null;
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
      */
176 176
     public function running(Closure ...$callbacks): void
177 177
     {
178
-        foreach ($callbacks as $callback) {
178
+        foreach ($callbacks as $callback){
179 179
             $this->runningCallbacks[] = $callback;
180 180
         }
181 181
     }
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
      */
191 191
     public function booting(Closure ...$callbacks): void
192 192
     {
193
-        foreach ($callbacks as $callback) {
193
+        foreach ($callbacks as $callback){
194 194
             $this->bootingCallbacks[] = $callback;
195 195
         }
196 196
     }
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
      */
206 206
     public function booted(Closure ...$callbacks): void
207 207
     {
208
-        foreach ($callbacks as $callback) {
208
+        foreach ($callbacks as $callback){
209 209
             $this->bootedCallbacks[] = $callback;
210 210
         }
211 211
     }
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
      */
222 222
     public function bootstrapped(Closure ...$callbacks): void
223 223
     {
224
-        foreach ($callbacks as $callback) {
224
+        foreach ($callbacks as $callback){
225 225
             $this->bootstrappedCallbacks[] = $callback;
226 226
         }
227 227
     }
@@ -249,8 +249,8 @@  discard block
 block discarded – undo
249 249
         $eventDispatcher = $this->getEventDispatcher();
250 250
         $eventDispatcher?->dispatch(new Serving());
251 251
 
252
-        foreach ($this->dispatchers as $dispatcher) {
253
-            if ($dispatcher->canServe()) {
252
+        foreach ($this->dispatchers as $dispatcher){
253
+            if ($dispatcher->canServe()){
254 254
                 return $this->container->runScope(
255 255
                     [DispatcherInterface::class => $dispatcher],
256 256
                     static function () use ($dispatcher, $eventDispatcher): mixed {
@@ -291,13 +291,13 @@  discard block
 block discarded – undo
291 291
      */
292 292
     protected function fireCallbacks(array &$callbacks): void
293 293
     {
294
-        if ($callbacks === []) {
294
+        if ($callbacks === []){
295 295
             return;
296 296
         }
297 297
 
298
-        do {
298
+        do{
299 299
             $this->container->invoke(\current($callbacks));
300
-        } while (\next($callbacks));
300
+        }while (\next($callbacks));
301 301
 
302 302
         $callbacks = [];
303 303
     }
Please login to merge, or discard this patch.
Braces   +25 added lines, -12 removed lines patch added patch discarded remove patch
@@ -104,11 +104,13 @@  discard block
 block discarded – undo
104 104
     ): static {
105 105
         $exceptionHandler ??= ExceptionHandler::class;
106 106
 
107
-        if (\is_string($exceptionHandler)) {
107
+        if (\is_string($exceptionHandler))
108
+        {
108 109
             $exceptionHandler = $container->make($exceptionHandler);
109 110
         }
110 111
 
111
-        if ($handleErrors) {
112
+        if ($handleErrors)
113
+        {
112 114
             $exceptionHandler->register();
113 115
         }
114 116
 
@@ -143,7 +145,8 @@  discard block
 block discarded – undo
143 145
 
144 146
         $this->fireCallbacks($this->runningCallbacks);
145 147
 
146
-        try {
148
+        try
149
+        {
147 150
             // will protect any against env overwrite action
148 151
             $this->container->runScope(
149 152
                 [EnvironmentInterface::class => $environment],
@@ -154,7 +157,9 @@  discard block
 block discarded – undo
154 157
                     $this->fireCallbacks($this->bootstrappedCallbacks);
155 158
                 }
156 159
             );
157
-        } catch (\Throwable $e) {
160
+        }
161
+        catch (\Throwable $e)
162
+        {
158 163
             $this->exceptionHandler->handleGlobalException($e);
159 164
 
160 165
             return null;
@@ -175,7 +180,8 @@  discard block
 block discarded – undo
175 180
      */
176 181
     public function running(Closure ...$callbacks): void
177 182
     {
178
-        foreach ($callbacks as $callback) {
183
+        foreach ($callbacks as $callback)
184
+        {
179 185
             $this->runningCallbacks[] = $callback;
180 186
         }
181 187
     }
@@ -190,7 +196,8 @@  discard block
 block discarded – undo
190 196
      */
191 197
     public function booting(Closure ...$callbacks): void
192 198
     {
193
-        foreach ($callbacks as $callback) {
199
+        foreach ($callbacks as $callback)
200
+        {
194 201
             $this->bootingCallbacks[] = $callback;
195 202
         }
196 203
     }
@@ -205,7 +212,8 @@  discard block
 block discarded – undo
205 212
      */
206 213
     public function booted(Closure ...$callbacks): void
207 214
     {
208
-        foreach ($callbacks as $callback) {
215
+        foreach ($callbacks as $callback)
216
+        {
209 217
             $this->bootedCallbacks[] = $callback;
210 218
         }
211 219
     }
@@ -221,7 +229,8 @@  discard block
 block discarded – undo
221 229
      */
222 230
     public function bootstrapped(Closure ...$callbacks): void
223 231
     {
224
-        foreach ($callbacks as $callback) {
232
+        foreach ($callbacks as $callback)
233
+        {
225 234
             $this->bootstrappedCallbacks[] = $callback;
226 235
         }
227 236
     }
@@ -249,8 +258,10 @@  discard block
 block discarded – undo
249 258
         $eventDispatcher = $this->getEventDispatcher();
250 259
         $eventDispatcher?->dispatch(new Serving());
251 260
 
252
-        foreach ($this->dispatchers as $dispatcher) {
253
-            if ($dispatcher->canServe()) {
261
+        foreach ($this->dispatchers as $dispatcher)
262
+        {
263
+            if ($dispatcher->canServe())
264
+            {
254 265
                 return $this->container->runScope(
255 266
                     [DispatcherInterface::class => $dispatcher],
256 267
                     static function () use ($dispatcher, $eventDispatcher): mixed {
@@ -291,11 +302,13 @@  discard block
 block discarded – undo
291 302
      */
292 303
     protected function fireCallbacks(array &$callbacks): void
293 304
     {
294
-        if ($callbacks === []) {
305
+        if ($callbacks === [])
306
+        {
295 307
             return;
296 308
         }
297 309
 
298
-        do {
310
+        do
311
+        {
299 312
             $this->container->invoke(\current($callbacks));
300 313
         } while (\next($callbacks));
301 314
 
Please login to merge, or discard this patch.
src/Console/tests/LazyTest.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     public function testLazyCommandCreationInCommandLocator(): void
15 15
     {
16 16
         $locator = $this->getCommandLocator(
17
-            new class() implements ScopedClassesInterface {
17
+            new class() implements ScopedClassesInterface{
18 18
                 public function getScopedClasses(string $scope, $target = null): array
19 19
                 {
20 20
                     return [
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,8 @@
 block discarded – undo
14 14
     public function testLazyCommandCreationInCommandLocator(): void
15 15
     {
16 16
         $locator = $this->getCommandLocator(
17
-            new class() implements ScopedClassesInterface {
17
+            new class() implements ScopedClassesInterface
18
+            {
18 19
                 public function getScopedClasses(string $scope, $target = null): array
19 20
                 {
20 21
                     return [
Please login to merge, or discard this patch.
src/Console/tests/InterceptorTest.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,14 +27,14 @@
 block discarded – undo
27 27
 
28 28
         $interceptor->shouldReceive('process')
29 29
             ->once()
30
-            ->withArgs(function (string $controller, string $action, array $parameters, CoreInterface $core) {
30
+            ->withArgs(function (string $controller, string $action, array $parameters, CoreInterface $core){
31 31
                 return $controller === TestCommand::class
32 32
                     && $action === 'perform'
33 33
                     && $parameters['input'] instanceof InputInterface
34 34
                     && $parameters['output'] instanceof OutputInterface
35 35
                     && $parameters['command'] instanceof TestCommand;
36 36
             })
37
-            ->andReturnUsing(function (string $controller, string $action, array $parameters, CoreInterface $core) {
37
+            ->andReturnUsing(function (string $controller, string $action, array $parameters, CoreInterface $core){
38 38
                 return $core->callAction($controller, $action, $parameters);
39 39
             });
40 40
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,14 +27,16 @@
 block discarded – undo
27 27
 
28 28
         $interceptor->shouldReceive('process')
29 29
             ->once()
30
-            ->withArgs(function (string $controller, string $action, array $parameters, CoreInterface $core) {
30
+            ->withArgs(function (string $controller, string $action, array $parameters, CoreInterface $core)
31
+            {
31 32
                 return $controller === TestCommand::class
32 33
                     && $action === 'perform'
33 34
                     && $parameters['input'] instanceof InputInterface
34 35
                     && $parameters['output'] instanceof OutputInterface
35 36
                     && $parameters['command'] instanceof TestCommand;
36 37
             })
37
-            ->andReturnUsing(function (string $controller, string $action, array $parameters, CoreInterface $core) {
38
+            ->andReturnUsing(function (string $controller, string $action, array $parameters, CoreInterface $core)
39
+            {
38 40
                 return $core->callAction($controller, $action, $parameters);
39 41
             });
40 42
 
Please login to merge, or discard this patch.
src/Console/tests/SignatureTest.php 3 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
     {
14 14
         $core = $this->getCore(
15 15
             $this->getStaticLocator([
16
-                new class extends Command {
16
+                new class extends Command{
17 17
                     protected const SIGNATURE = 'foo:bar {arg?} {--o|option}';
18 18
 
19 19
                     public function perform(): int
@@ -21,11 +21,11 @@  discard block
 block discarded – undo
21 21
                         $argument = $this->argument('arg');
22 22
                         $option = $this->option('option');
23 23
 
24
-                        if ($argument) {
24
+                        if ($argument){
25 25
                             $this->write('argument : '.$argument);
26 26
                         }
27 27
 
28
-                        if ($option) {
28
+                        if ($option){
29 29
                             $this->write('option : '.$option);
30 30
                         }
31 31
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     {
66 66
         $core = $this->getCore(
67 67
             $this->getStaticLocator([
68
-                new class extends Command {
68
+                new class extends Command{
69 69
                     protected const SIGNATURE = 'foo:bar {arg[]?} {--o|option[]=}';
70 70
 
71 71
                     public function perform(): int
@@ -73,11 +73,11 @@  discard block
 block discarded – undo
73 73
                         $argument = (array)$this->argument('arg');
74 74
                         $option = (array)$this->option('option');
75 75
 
76
-                        if ($argument) {
76
+                        if ($argument){
77 77
                             $this->write('argument : '.\implode(',', $argument));
78 78
                         }
79 79
 
80
-                        if ($option) {
80
+                        if ($option){
81 81
                             $this->write('option : '.\implode(',', $option));
82 82
                         }
83 83
 
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     {
119 119
         $core = $this->getCore(
120 120
             $this->getStaticLocator([
121
-                new class extends Command {
121
+                new class extends Command{
122 122
                     protected const SIGNATURE = 'foo:bar 
123 123
                                     {foo : Foo arg description. }  
124 124
                                     {bar=default : Bar arg description. } 
Please login to merge, or discard this patch.
Braces   +14 added lines, -7 removed lines patch added patch discarded remove patch
@@ -13,7 +13,8 @@  discard block
 block discarded – undo
13 13
     {
14 14
         $core = $this->getCore(
15 15
             $this->getStaticLocator([
16
-                new class extends Command {
16
+                new class extends Command
17
+                {
17 18
                     protected const SIGNATURE = 'foo:bar {arg?} {--o|option}';
18 19
 
19 20
                     public function perform(): int
@@ -21,11 +22,13 @@  discard block
 block discarded – undo
21 22
                         $argument = $this->argument('arg');
22 23
                         $option = $this->option('option');
23 24
 
24
-                        if ($argument) {
25
+                        if ($argument)
26
+                        {
25 27
                             $this->write('argument : '.$argument);
26 28
                         }
27 29
 
28
-                        if ($option) {
30
+                        if ($option)
31
+                        {
29 32
                             $this->write('option : '.$option);
30 33
                         }
31 34
 
@@ -65,7 +68,8 @@  discard block
 block discarded – undo
65 68
     {
66 69
         $core = $this->getCore(
67 70
             $this->getStaticLocator([
68
-                new class extends Command {
71
+                new class extends Command
72
+                {
69 73
                     protected const SIGNATURE = 'foo:bar {arg[]?} {--o|option[]=}';
70 74
 
71 75
                     public function perform(): int
@@ -73,11 +77,13 @@  discard block
 block discarded – undo
73 77
                         $argument = (array)$this->argument('arg');
74 78
                         $option = (array)$this->option('option');
75 79
 
76
-                        if ($argument) {
80
+                        if ($argument)
81
+                        {
77 82
                             $this->write('argument : '.\implode(',', $argument));
78 83
                         }
79 84
 
80
-                        if ($option) {
85
+                        if ($option)
86
+                        {
81 87
                             $this->write('option : '.\implode(',', $option));
82 88
                         }
83 89
 
@@ -118,7 +124,8 @@  discard block
 block discarded – undo
118 124
     {
119 125
         $core = $this->getCore(
120 126
             $this->getStaticLocator([
121
-                new class extends Command {
127
+                new class extends Command
128
+                {
122 129
                     protected const SIGNATURE = 'foo:bar 
123 130
                                     {foo : Foo arg description. }  
124 131
                                     {bar=default : Bar arg description. } 
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
   -n, --no-interaction  Do not ask any interactive question
158 158
   -v|vv|vvv, --verbose  Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
159 159
 
160
-HELP
160
+help
161 161
             ,
162 162
             $core->run(command: 'help', input: ['command_name' => 'foo:bar'])->getOutput()->fetch()
163 163
         );
Please login to merge, or discard this patch.