Test Failed
Pull Request — master (#896)
by Alexander
09:18
created
src/Broadcasting/src/AuthorizationStatus.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
      */
14 14
     public function __construct(
15 15
         public readonly bool $success,
16
-        public readonly ?array $topics,
16
+        public readonly ? array $topics,
17 17
         public readonly array $attributes = [],
18 18
         public readonly ?ResponseInterface $response = null
19
-    ) {
19
+    ){
20 20
     }
21 21
 
22 22
     /**
Please login to merge, or discard this patch.
src/Scaffolder/tests/BaseTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     public function setUp(): void
23 23
     {
24 24
         $this->app = TestApp::create([
25
-            'root' => __DIR__ . '/App',
25
+            'root' => __DIR__.'/App',
26 26
         ], false)->run();
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
src/Scaffolder/src/Config/ScaffolderConfig.php 2 patches
Braces   +21 added lines, -10 removed lines patch added patch discarded remove patch
@@ -47,11 +47,13 @@  discard block
 block discarded – undo
47 47
         $localNamespace = \trim($this->getOption($element, 'namespace', ''), '\\');
48 48
         ['namespace' => $namespace] = $this->parseName($name);
49 49
 
50
-        if (!empty($namespace)) {
50
+        if (!empty($namespace))
51
+        {
51 52
             $localNamespace .= '\\' . $this->classify($namespace);
52 53
         }
53 54
 
54
-        if (empty($this->baseNamespace($element))) {
55
+        if (empty($this->baseNamespace($element)))
56
+        {
55 57
             return $localNamespace;
56 58
         }
57 59
 
@@ -77,7 +79,8 @@  discard block
 block discarded – undo
77 79
     {
78 80
         $class = $this->getOption($element, 'class');
79 81
 
80
-        if (empty($class)) {
82
+        if (empty($class))
83
+        {
81 84
             throw new ScaffolderException(
82 85
                 \sprintf("Unable to scaffold '%s', no declaration class found", $element)
83 86
             );
@@ -101,11 +104,13 @@  discard block
 block discarded – undo
101 104
 
102 105
     private function getOption(string $element, string $section, mixed $default = null): mixed
103 106
     {
104
-        if (!isset($this->config['declarations'][$element])) {
107
+        if (!isset($this->config['declarations'][$element]))
108
+        {
105 109
             throw new ScaffolderException(\sprintf("Undefined declaration '%s'.", $element));
106 110
         }
107 111
 
108
-        if (\array_key_exists($section, $this->config['declarations'][$element])) {
112
+        if (\array_key_exists($section, $this->config['declarations'][$element]))
113
+        {
109 114
             return $this->config['declarations'][$element][$section];
110 115
         }
111 116
 
@@ -121,7 +126,8 @@  discard block
 block discarded – undo
121 126
     {
122 127
         $name = \str_replace('/', '\\', $name);
123 128
 
124
-        if (str_contains($name, '\\')) {
129
+        if (str_contains($name, '\\'))
130
+        {
125 131
             $names = \explode('\\', $name);
126 132
             $class = \array_pop($names);
127 133
 
@@ -134,7 +140,8 @@  discard block
 block discarded – undo
134 140
 
135 141
     private function baseNamespace(string $element): string
136 142
     {
137
-        if (\array_key_exists('baseNamespace', $this->config['declarations'][$element])) {
143
+        if (\array_key_exists('baseNamespace', $this->config['declarations'][$element]))
144
+        {
138 145
             return \trim((string) $this->getOption($element, 'baseNamespace', ''), '\\');
139 146
         }
140 147
 
@@ -145,11 +152,15 @@  discard block
 block discarded – undo
145 152
     {
146 153
         $firstChunkIterated = false;
147 154
         $joinedPath = '';
148
-        foreach ($chunks as $chunk) {
149
-            if (!$firstChunkIterated) {
155
+        foreach ($chunks as $chunk)
156
+        {
157
+            if (!$firstChunkIterated)
158
+            {
150 159
                 $firstChunkIterated = true;
151 160
                 $joinedPath = $chunk;
152
-            } else {
161
+            }
162
+            else
163
+            {
153 164
                 $joinedPath = \rtrim($joinedPath, $joint) . $joint . \ltrim($chunk, $joint);
154 165
             }
155 166
         }
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         $class = $this->classify($name);
40 40
         $postfix = $this->elementPostfix($element);
41 41
 
42
-        return \str_ends_with($class, $postfix) ? $class : $class . $postfix;
42
+        return \str_ends_with($class, $postfix) ? $class : $class.$postfix;
43 43
     }
44 44
 
45 45
     public function classNamespace(string $element, string $name = ''): string
@@ -47,15 +47,15 @@  discard block
 block discarded – undo
47 47
         $localNamespace = \trim($this->getOption($element, 'namespace', ''), '\\');
48 48
         ['namespace' => $namespace] = $this->parseName($name);
49 49
 
50
-        if (!empty($namespace)) {
51
-            $localNamespace .= '\\' . $this->classify($namespace);
50
+        if (!empty($namespace)){
51
+            $localNamespace .= '\\'.$this->classify($namespace);
52 52
         }
53 53
 
54
-        if (empty($this->baseNamespace($element))) {
54
+        if (empty($this->baseNamespace($element))){
55 55
             return $localNamespace;
56 56
         }
57 57
 
58
-        return \trim($this->baseNamespace($element) . '\\' . $localNamespace, '\\');
58
+        return \trim($this->baseNamespace($element).'\\'.$localNamespace, '\\');
59 59
     }
60 60
 
61 61
     public function classFilename(string $element, string $name, ?string $namespace = null): string
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         return $this->joinPathChunks([
67 67
             $this->baseDirectory(),
68 68
             \str_replace('\\', '/', $elementNamespace),
69
-            $this->className($element, $name) . '.php',
69
+            $this->className($element, $name).'.php',
70 70
         ], '/');
71 71
     }
72 72
 
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     {
78 78
         $class = $this->getOption($element, 'class');
79 79
 
80
-        if (empty($class)) {
80
+        if (empty($class)){
81 81
             throw new ScaffolderException(
82 82
                 \sprintf("Unable to scaffold '%s', no declaration class found", $element)
83 83
             );
@@ -101,11 +101,11 @@  discard block
 block discarded – undo
101 101
 
102 102
     private function getOption(string $element, string $section, mixed $default = null): mixed
103 103
     {
104
-        if (!isset($this->config['declarations'][$element])) {
104
+        if (!isset($this->config['declarations'][$element])){
105 105
             throw new ScaffolderException(\sprintf("Undefined declaration '%s'.", $element));
106 106
         }
107 107
 
108
-        if (\array_key_exists($section, $this->config['declarations'][$element])) {
108
+        if (\array_key_exists($section, $this->config['declarations'][$element])){
109 109
             return $this->config['declarations'][$element][$section];
110 110
         }
111 111
 
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     {
122 122
         $name = \str_replace('/', '\\', $name);
123 123
 
124
-        if (str_contains($name, '\\')) {
124
+        if (str_contains($name, '\\')){
125 125
             $names = \explode('\\', $name);
126 126
             $class = \array_pop($names);
127 127
 
@@ -134,8 +134,8 @@  discard block
 block discarded – undo
134 134
 
135 135
     private function baseNamespace(string $element): string
136 136
     {
137
-        if (\array_key_exists('baseNamespace', $this->config['declarations'][$element])) {
138
-            return \trim((string) $this->getOption($element, 'baseNamespace', ''), '\\');
137
+        if (\array_key_exists('baseNamespace', $this->config['declarations'][$element])){
138
+            return \trim((string)$this->getOption($element, 'baseNamespace', ''), '\\');
139 139
         }
140 140
 
141 141
         return \trim($this->config['namespace'], '\\');
@@ -145,12 +145,12 @@  discard block
 block discarded – undo
145 145
     {
146 146
         $firstChunkIterated = false;
147 147
         $joinedPath = '';
148
-        foreach ($chunks as $chunk) {
149
-            if (!$firstChunkIterated) {
148
+        foreach ($chunks as $chunk){
149
+            if (!$firstChunkIterated){
150 150
                 $firstChunkIterated = true;
151 151
                 $joinedPath = $chunk;
152
-            } else {
153
-                $joinedPath = \rtrim($joinedPath, $joint) . $joint . \ltrim($chunk, $joint);
152
+            }else{
153
+                $joinedPath = \rtrim($joinedPath, $joint).$joint.\ltrim($chunk, $joint);
154 154
             }
155 155
         }
156 156
 
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 
160 160
     private function classify(string $name): string
161 161
     {
162
-        return ( new InflectorFactory() )
162
+        return (new InflectorFactory())
163 163
             ->build()
164 164
             ->classify($name);
165 165
     }
Please login to merge, or discard this patch.
src/Scaffolder/src/Command/ConfigCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
43 43
         $declaration = $this->createDeclaration(ConfigDeclaration::class);
44 44
 
45 45
         $declaration->create(
46
-            (bool) $this->option('reverse'),
47
-            (string) $this->argument('name')
46
+            (bool)$this->option('reverse'),
47
+            (string)$this->argument('name')
48 48
         );
49 49
 
50 50
         $this->writeDeclaration($declaration);
Please login to merge, or discard this patch.
src/Scaffolder/src/Command/CommandCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
         ['name', InputArgument::REQUIRED, 'Command name'],
17 17
         ['alias', InputArgument::OPTIONAL, 'Command id/alias'],
18 18
     ];
19
-    protected const OPTIONS     = [
19
+    protected const OPTIONS = [
20 20
         [
21 21
             'description',
22 22
             'd',
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
     {
39 39
         $declaration = $this->createDeclaration(CommandDeclaration::class);
40 40
 
41
-        $declaration->setAlias((string) ($this->argument('alias') ?? $this->argument('name')));
42
-        $declaration->setDescription((string) $this->option('description'));
41
+        $declaration->setAlias((string)($this->argument('alias') ?? $this->argument('name')));
42
+        $declaration->setDescription((string)$this->option('description'));
43 43
 
44 44
         $this->writeDeclaration($declaration);
45 45
 
Please login to merge, or discard this patch.
src/Scaffolder/src/Command/ControllerCommand.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,11 +43,11 @@
 block discarded – undo
43 43
     {
44 44
         $declaration = $this->createDeclaration(ControllerDeclaration::class);
45 45
 
46
-        foreach ($this->option('action') as $action) {
46
+        foreach ($this->option('action') as $action){
47 47
             $declaration->addAction($action);
48 48
         }
49 49
 
50
-        if ((bool)$this->option('prototype')) {
50
+        if ((bool)$this->option('prototype')){
51 51
             $declaration->addPrototypeTrait();
52 52
         }
53 53
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,11 +43,13 @@
 block discarded – undo
43 43
     {
44 44
         $declaration = $this->createDeclaration(ControllerDeclaration::class);
45 45
 
46
-        foreach ($this->option('action') as $action) {
46
+        foreach ($this->option('action') as $action)
47
+        {
47 48
             $declaration->addAction($action);
48 49
         }
49 50
 
50
-        if ((bool)$this->option('prototype')) {
51
+        if ((bool)$this->option('prototype'))
52
+        {
51 53
             $declaration->addPrototypeTrait();
52 54
         }
53 55
 
Please login to merge, or discard this patch.
src/Scaffolder/src/Bootloader/ScaffolderBootloader.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     public function __construct(
27 27
         private readonly ConfiguratorInterface $config,
28 28
         private readonly KernelInterface $kernel
29
-    ) {
29
+    ){
30 30
     }
31 31
 
32 32
     public function init(ConsoleBootloader $console): void
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
         $console->addCommand(Command\JobHandlerCommand::class);
39 39
         $console->addCommand(Command\MiddlewareCommand::class);
40 40
 
41
-        try {
41
+        try{
42 42
             $defaultNamespace = (new ReflectionClass($this->kernel))->getNamespaceName();
43
-        } catch (ReflectionException) {
43
+        }catch (ReflectionException){
44 44
             $defaultNamespace = '';
45 45
         }
46 46
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
              * Base directory for generated classes, class will be automatically localed into sub directory
56 56
              * using given namespace.
57 57
              */
58
-            'directory'    => directory('app') . 'src/',
58
+            'directory'    => directory('app').'src/',
59 59
 
60 60
             /*
61 61
              * Default namespace to be applied for every generated class. By default uses Kernel namespace
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,9 +38,12 @@
 block discarded – undo
38 38
         $console->addCommand(Command\JobHandlerCommand::class);
39 39
         $console->addCommand(Command\MiddlewareCommand::class);
40 40
 
41
-        try {
41
+        try
42
+        {
42 43
             $defaultNamespace = (new ReflectionClass($this->kernel))->getNamespaceName();
43
-        } catch (ReflectionException) {
44
+        }
45
+        catch (ReflectionException)
46
+        {
44 47
             $defaultNamespace = '';
45 48
         }
46 49
 
Please login to merge, or discard this patch.
src/Scaffolder/src/Declaration/ConfigDeclaration/Defaults.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
     public function get(array $values): array
27 27
     {
28 28
         $output = [];
29
-        foreach ($values as $key => $value) {
29
+        foreach ($values as $key => $value){
30 30
             $output[$key] = self::TYPE_DEFAULTS[\gettype($value)] ?? null;
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
     public function get(array $values): array
27 27
     {
28 28
         $output = [];
29
-        foreach ($values as $key => $value) {
29
+        foreach ($values as $key => $value)
30
+        {
30 31
             $output[$key] = self::TYPE_DEFAULTS[\gettype($value)] ?? null;
31 32
         }
32 33
 
Please login to merge, or discard this patch.
src/Scaffolder/src/Declaration/ConfigDeclaration/TypeAnnotations.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     public function getAnnotation(mixed $value): string
28 28
     {
29
-        if (\is_array($value)) {
29
+        if (\is_array($value)){
30 30
             return $this->arrayAnnotationString($value);
31 31
         }
32 32
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     private function arrayAnnotationString(array $value): string
42 42
     {
43 43
         $types = [];
44
-        foreach ($value as $item) {
44
+        foreach ($value as $item){
45 45
             $types[] = \gettype($item);
46 46
         }
47 47
         $types = \array_unique($types);
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,8 @@  discard block
 block discarded – undo
26 26
 
27 27
     public function getAnnotation(mixed $value): string
28 28
     {
29
-        if (\is_array($value)) {
29
+        if (\is_array($value))
30
+        {
30 31
             return $this->arrayAnnotationString($value);
31 32
         }
32 33
 
@@ -41,7 +42,8 @@  discard block
 block discarded – undo
41 42
     private function arrayAnnotationString(array $value): string
42 43
     {
43 44
         $types = [];
44
-        foreach ($value as $item) {
45
+        foreach ($value as $item)
46
+        {
45 47
             $types[] = \gettype($item);
46 48
         }
47 49
         $types = \array_unique($types);
Please login to merge, or discard this patch.