Passed
Pull Request — master (#935)
by Aleksei
07:43
created
src/Framework/Translator/Views/LocaleProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
     public function __construct(
21 21
         private readonly TranslatorInterface $translator
22
-    ) {
22
+    ){
23 23
     }
24 24
 
25 25
     public function process(ViewSource $source, ContextInterface $context): ViewSource
Please login to merge, or discard this patch.
src/Framework/Translator/Views/LocaleDependency.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 
19 19
     public function __construct(
20 20
         private readonly TranslatorInterface $translator
21
-    ) {
21
+    ){
22 22
         $this->locales = $translator->getCatalogueManager()->getLocales();
23 23
     }
24 24
 
Please login to merge, or discard this patch.
src/Framework/Translator/MemoryCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public function __construct(
13 13
         private readonly MemoryInterface $memory
14
-    ) {
14
+    ){
15 15
     }
16 16
 
17 17
     public function setLocales(?array $locales): void
Please login to merge, or discard this patch.
src/Framework/helpers.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 use Spiral\Core\Container\Autowire;
7 7
 use Spiral\Router\RouterInterface;
8 8
 
9
-if (!\function_exists('bind')) {
9
+if (!\function_exists('bind')){
10 10
     /**
11 11
      * Shortcut to container Autowire definition.
12 12
      *
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     }
22 22
 }
23 23
 
24
-if (!\function_exists('route')) {
24
+if (!\function_exists('route')){
25 25
     /**
26 26
      * Generate the URL to a named route.
27 27
      *
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,8 @@  discard block
 block discarded – undo
6 6
 use Spiral\Core\Container\Autowire;
7 7
 use Spiral\Router\RouterInterface;
8 8
 
9
-if (!\function_exists('bind')) {
9
+if (!\function_exists('bind'))
10
+{
10 11
     /**
11 12
      * Shortcut to container Autowire definition.
12 13
      *
@@ -21,7 +22,8 @@  discard block
 block discarded – undo
21 22
     }
22 23
 }
23 24
 
24
-if (!\function_exists('route')) {
25
+if (!\function_exists('route'))
26
+{
25 27
     /**
26 28
      * Generate the URL to a named route.
27 29
      *
Please login to merge, or discard this patch.
src/Framework/Security/GuardScope.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
         private readonly PermissionsInterface $permissions,
21 21
         private readonly ContainerInterface $container,
22 22
         private array $roles = []
23
-    ) {
23
+    ){
24 24
     }
25 25
 
26 26
     /**
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
     public function allows(string $permission, array $context = []): bool
30 30
     {
31 31
         $allows = false;
32
-        foreach ($this->getRoles() as $role) {
33
-            if (!$this->permissions->hasRole($role)) {
32
+        foreach ($this->getRoles() as $role){
33
+            if (!$this->permissions->hasRole($role)){
34 34
                 continue;
35 35
             }
36 36
 
@@ -70,13 +70,13 @@  discard block
 block discarded – undo
70 70
      */
71 71
     public function getActor(): ActorInterface
72 72
     {
73
-        if (!\is_null($this->actor)) {
73
+        if (!\is_null($this->actor)){
74 74
             return $this->actor;
75 75
         }
76 76
 
77
-        try {
77
+        try{
78 78
             return $this->container->get(ActorInterface::class);
79
-        } catch (NotFoundExceptionInterface $e) {
79
+        }catch (NotFoundExceptionInterface $e){
80 80
             throw new ScopeException('Unable to resolve Actor from the scope', $e->getCode(), $e);
81 81
         }
82 82
     }
Please login to merge, or discard this patch.
Braces   +11 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,8 +29,10 @@  discard block
 block discarded – undo
29 29
     public function allows(string $permission, array $context = []): bool
30 30
     {
31 31
         $allows = false;
32
-        foreach ($this->getRoles() as $role) {
33
-            if (!$this->permissions->hasRole($role)) {
32
+        foreach ($this->getRoles() as $role)
33
+        {
34
+            if (!$this->permissions->hasRole($role))
35
+            {
34 36
                 continue;
35 37
             }
36 38
 
@@ -70,13 +72,17 @@  discard block
 block discarded – undo
70 72
      */
71 73
     public function getActor(): ActorInterface
72 74
     {
73
-        if (!\is_null($this->actor)) {
75
+        if (!\is_null($this->actor))
76
+        {
74 77
             return $this->actor;
75 78
         }
76 79
 
77
-        try {
80
+        try
81
+        {
78 82
             return $this->container->get(ActorInterface::class);
79
-        } catch (NotFoundExceptionInterface $e) {
83
+        }
84
+        catch (NotFoundExceptionInterface $e)
85
+        {
80 86
             throw new ScopeException('Unable to resolve Actor from the scope', $e->getCode(), $e);
81 87
         }
82 88
     }
Please login to merge, or discard this patch.
src/Framework/Debug/StateCollector/HttpCollector.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
     public function populate(StateInterface $state): void
25 25
     {
26
-        if ($this->request === null) {
26
+        if ($this->request === null){
27 27
             return;
28 28
         }
29 29
 
@@ -32,11 +32,11 @@  discard block
 block discarded – undo
32 32
 
33 33
         $state->setVariable('headers', $this->request->getHeaders());
34 34
 
35
-        if ($this->request->getQueryParams() !== []) {
35
+        if ($this->request->getQueryParams() !== []){
36 36
             $state->setVariable('query', $this->request->getQueryParams());
37 37
         }
38 38
 
39
-        if ($this->request->getParsedBody() !== null) {
39
+        if ($this->request->getParsedBody() !== null){
40 40
             $state->setVariable('data', $this->request->getParsedBody());
41 41
         }
42 42
     }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,8 @@  discard block
 block discarded – undo
23 23
 
24 24
     public function populate(StateInterface $state): void
25 25
     {
26
-        if ($this->request === null) {
26
+        if ($this->request === null)
27
+        {
27 28
             return;
28 29
         }
29 30
 
@@ -32,11 +33,13 @@  discard block
 block discarded – undo
32 33
 
33 34
         $state->setVariable('headers', $this->request->getHeaders());
34 35
 
35
-        if ($this->request->getQueryParams() !== []) {
36
+        if ($this->request->getQueryParams() !== [])
37
+        {
36 38
             $state->setVariable('query', $this->request->getQueryParams());
37 39
         }
38 40
 
39
-        if ($this->request->getParsedBody() !== null) {
41
+        if ($this->request->getParsedBody() !== null)
42
+        {
40 43
             $state->setVariable('data', $this->request->getParsedBody());
41 44
         }
42 45
     }
Please login to merge, or discard this patch.
src/Framework/Debug/StateCollector/EnvironmentCollector.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,14 +15,14 @@
 block discarded – undo
15 15
     public function __construct(
16 16
         private readonly ContainerInterface $container,
17 17
         private readonly EnvironmentInterface $env
18
-    ) {
18
+    ){
19 19
     }
20 20
 
21 21
     public function populate(StateInterface $state): void
22 22
     {
23 23
         $state->setTag('php', \phpversion());
24 24
 
25
-        if ($this->container->has(DispatcherInterface::class)) {
25
+        if ($this->container->has(DispatcherInterface::class)){
26 26
             $state->setTag('dispatcher', $this->container->get(DispatcherInterface::class)::class);
27 27
         }
28 28
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,8 @@
 block discarded – undo
22 22
     {
23 23
         $state->setTag('php', \phpversion());
24 24
 
25
-        if ($this->container->has(DispatcherInterface::class)) {
25
+        if ($this->container->has(DispatcherInterface::class))
26
+        {
26 27
             $state->setTag('dispatcher', $this->container->get(DispatcherInterface::class)::class);
27 28
         }
28 29
 
Please login to merge, or discard this patch.
src/Framework/Exceptions/Reporter/FileReporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     public function __construct(
13 13
         private FileSnapshot $fileSnapshot,
14
-    ) {
14
+    ){
15 15
     }
16 16
 
17 17
     public function report(\Throwable $exception): void
Please login to merge, or discard this patch.
src/Framework/Command/Router/ListCommand.php 2 patches
Braces   +23 added lines, -11 removed lines patch added patch discarded remove patch
@@ -27,8 +27,10 @@  discard block
 block discarded – undo
27 27
     {
28 28
         $grid = $this->table(['Name:', 'Verbs:', 'Pattern:', 'Target:', 'Group:']);
29 29
 
30
-        foreach ($router->getRoutes() as $name => $route) {
31
-            if ($route instanceof Route) {
30
+        foreach ($router->getRoutes() as $name => $route)
31
+        {
32
+            if ($route instanceof Route)
33
+            {
32 34
                 $grid->addRow(
33 35
                     [
34 36
                         $name,
@@ -52,8 +54,10 @@  discard block
 block discarded – undo
52 54
     private function getRouteGroups(GroupRegistry $registry, string $routeName): array
53 55
     {
54 56
         $groups = [];
55
-        foreach ($registry as $groupName => $group) {
56
-            if ($group->hasRoute($routeName)) {
57
+        foreach ($registry as $groupName => $group)
58
+        {
59
+            if ($group->hasRoute($routeName))
60
+            {
57 61
                 $groups[] = $groupName;
58 62
             }
59 63
         }
@@ -63,12 +67,14 @@  discard block
 block discarded – undo
63 67
 
64 68
     private function getVerbs(Route $route): string
65 69
     {
66
-        if ($route->getVerbs() === Route::VERBS) {
70
+        if ($route->getVerbs() === Route::VERBS)
71
+        {
67 72
             return '*';
68 73
         }
69 74
 
70 75
         $result = [];
71
-        foreach ($route->getVerbs() as $verb) {
76
+        foreach ($route->getVerbs() as $verb)
77
+        {
72 78
             $result[] = match (\strtolower($verb)) {
73 79
                 'get' => '<fg=green>GET</>',
74 80
                 'post' => '<fg=blue>POST</>',
@@ -103,7 +109,8 @@  discard block
 block discarded – undo
103 109
     private function getTarget(Route $route, KernelInterface $kernel): string
104 110
     {
105 111
         $target = $this->getValue($route, 'target');
106
-        switch (true) {
112
+        switch (true)
113
+        {
107 114
             case $target instanceof \Closure:
108 115
                 $reflection = new \ReflectionFunction($target);
109 116
 
@@ -128,7 +135,8 @@  discard block
 block discarded – undo
128 135
 
129 136
             case $target instanceof Group:
130 137
                 $result = [];
131
-                foreach ($this->getValue($target, 'controllers') as $alias => $class) {
138
+                foreach ($this->getValue($target, 'controllers') as $alias => $class)
139
+                {
132 140
                     $result[] = \sprintf('%s => %s', $alias, $this->relativeClass($class, $kernel));
133 141
                 }
134 142
 
@@ -147,10 +155,13 @@  discard block
 block discarded – undo
147 155
 
148 156
     private function getValue(object $object, string $property): mixed
149 157
     {
150
-        try {
158
+        try
159
+        {
151 160
             $r = new \ReflectionObject($object);
152 161
             $prop = $r->getProperty($property);
153
-        } catch (\Throwable $e) {
162
+        }
163
+        catch (\Throwable $e)
164
+        {
154 165
             return $e->getMessage();
155 166
         }
156 167
 
@@ -161,7 +172,8 @@  discard block
 block discarded – undo
161 172
     {
162 173
         $r = new \ReflectionObject($kernel);
163 174
 
164
-        if (\str_starts_with($class, $r->getNamespaceName())) {
175
+        if (\str_starts_with($class, $r->getNamespaceName()))
176
+        {
165 177
             return \substr($class, \strlen($r->getNamespaceName()) + 1);
166 178
         }
167 179
 
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
27 27
     {
28 28
         $grid = $this->table(['Name:', 'Verbs:', 'Pattern:', 'Target:', 'Group:']);
29 29
 
30
-        foreach ($router->getRoutes() as $name => $route) {
31
-            if ($route instanceof Route) {
30
+        foreach ($router->getRoutes() as $name => $route){
31
+            if ($route instanceof Route){
32 32
                 $grid->addRow(
33 33
                     [
34 34
                         $name,
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
     private function getRouteGroups(GroupRegistry $registry, string $routeName): array
53 53
     {
54 54
         $groups = [];
55
-        foreach ($registry as $groupName => $group) {
56
-            if ($group->hasRoute($routeName)) {
55
+        foreach ($registry as $groupName => $group){
56
+            if ($group->hasRoute($routeName)){
57 57
                 $groups[] = $groupName;
58 58
             }
59 59
         }
@@ -63,12 +63,12 @@  discard block
 block discarded – undo
63 63
 
64 64
     private function getVerbs(Route $route): string
65 65
     {
66
-        if ($route->getVerbs() === Route::VERBS) {
66
+        if ($route->getVerbs() === Route::VERBS){
67 67
             return '*';
68 68
         }
69 69
 
70 70
         $result = [];
71
-        foreach ($route->getVerbs() as $verb) {
71
+        foreach ($route->getVerbs() as $verb){
72 72
             $result[] = match (\strtolower($verb)) {
73 73
                 'get' => '<fg=green>GET</>',
74 74
                 'post' => '<fg=blue>POST</>',
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
         return \preg_replace_callback(
94 94
             '/<([^>]*)>/',
95 95
             static fn ($m) => \sprintf('<fg=magenta>%s</>', $m[0]),
96
-            !empty($prefix) ? $prefix . '/' . \trim($pattern, '/') : $pattern
96
+            !empty($prefix) ? $prefix.'/'.\trim($pattern, '/') : $pattern
97 97
         );
98 98
     }
99 99
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     private function getTarget(Route $route, KernelInterface $kernel): string
105 105
     {
106 106
         $target = $this->getValue($route, 'target');
107
-        switch (true) {
107
+        switch (true){
108 108
             case $target instanceof \Closure:
109 109
                 $reflection = new \ReflectionFunction($target);
110 110
 
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
 
130 130
             case $target instanceof Group:
131 131
                 $result = [];
132
-                foreach ($this->getValue($target, 'controllers') as $alias => $class) {
132
+                foreach ($this->getValue($target, 'controllers') as $alias => $class){
133 133
                     $result[] = \sprintf('%s => %s', $alias, $this->relativeClass($class, $kernel));
134 134
                 }
135 135
 
@@ -148,10 +148,10 @@  discard block
 block discarded – undo
148 148
 
149 149
     private function getValue(object $object, string $property): mixed
150 150
     {
151
-        try {
151
+        try{
152 152
             $r = new \ReflectionObject($object);
153 153
             $prop = $r->getProperty($property);
154
-        } catch (\Throwable $e) {
154
+        }catch (\Throwable $e){
155 155
             return $e->getMessage();
156 156
         }
157 157
 
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
     {
163 163
         $r = new \ReflectionObject($kernel);
164 164
 
165
-        if (\str_starts_with($class, $r->getNamespaceName())) {
165
+        if (\str_starts_with($class, $r->getNamespaceName())){
166 166
             return \substr($class, \strlen($r->getNamespaceName()) + 1);
167 167
         }
168 168
 
Please login to merge, or discard this patch.