Passed
Pull Request — master (#1021)
by Maxim
26:26 queued 15:24
created
src/Console/src/InputProxy.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     public function __construct(
16 16
         private readonly InputInterface $input,
17 17
         private readonly array $overwrite
18
-    ) {
18
+    ){
19 19
     }
20 20
 
21 21
     public function __toString(): string
@@ -28,14 +28,14 @@  discard block
 block discarded – undo
28 28
         return $this->overwrite['firstArgument'] ?? $this->input->getFirstArgument();
29 29
     }
30 30
 
31
-    public function hasParameterOption(string|array $values, bool $onlyParams = false): bool
31
+    public function hasParameterOption(string | array $values, bool $onlyParams = false): bool
32 32
     {
33 33
         return $this->input->hasParameterOption($values, $onlyParams);
34 34
     }
35 35
 
36 36
     public function getParameterOption(
37
-        string|array $values,
38
-        string|bool|int|float|array|null $default = false,
37
+        string | array $values,
38
+        string | bool | int | float | array | null $default = false,
39 39
         bool $onlyParams = false
40 40
     ): mixed {
41 41
         return $this->input->getParameterOption($values, $default, $onlyParams);
Please login to merge, or discard this patch.