Passed
Push — master ( 9f2c4f...e942df )
by Aleksei
17:57 queued 05:15
created
src/Translator/src/helpers.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
 use Spiral\Translator\Exception\TranslatorException;
8 8
 use Spiral\Translator\TranslatorInterface;
9 9
 
10
-if (!\function_exists('l')) {
10
+if (!\function_exists('l')){
11 11
     /**
12 12
      * Translate message using default or specific bundle name.
13 13
      *
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     {
23 23
         /** @psalm-suppress InternalMethod */
24 24
         $container = ContainerScope::getContainer();
25
-        if ($container === null || !$container->has(TranslatorInterface::class)) {
25
+        if ($container === null || !$container->has(TranslatorInterface::class)){
26 26
             throw new ScopeException(
27 27
                 '`TranslatorInterface` binding is missing or container scope is not set'
28 28
             );
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     }
36 36
 }
37 37
 
38
-if (!\function_exists('p')) {
38
+if (!\function_exists('p')){
39 39
     /**
40 40
      * Pluralize string using language pluralization options and specified numeric value.
41 41
      *
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     {
52 52
         /** @psalm-suppress InternalMethod */
53 53
         $container = ContainerScope::getContainer();
54
-        if (empty($container) || !$container->has(TranslatorInterface::class)) {
54
+        if (empty($container) || !$container->has(TranslatorInterface::class)){
55 55
             throw new ScopeException(
56 56
                 '`TranslatorInterface` binding is missing or container scope is not set'
57 57
             );
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,7 +7,8 @@  discard block
 block discarded – undo
7 7
 use Spiral\Translator\Exception\TranslatorException;
8 8
 use Spiral\Translator\TranslatorInterface;
9 9
 
10
-if (!\function_exists('l')) {
10
+if (!\function_exists('l'))
11
+{
11 12
     /**
12 13
      * Translate message using default or specific bundle name.
13 14
      *
@@ -22,7 +23,8 @@  discard block
 block discarded – undo
22 23
     {
23 24
         /** @psalm-suppress InternalMethod */
24 25
         $container = ContainerScope::getContainer();
25
-        if ($container === null || !$container->has(TranslatorInterface::class)) {
26
+        if ($container === null || !$container->has(TranslatorInterface::class))
27
+        {
26 28
             throw new ScopeException(
27 29
                 '`TranslatorInterface` binding is missing or container scope is not set'
28 30
             );
@@ -35,7 +37,8 @@  discard block
 block discarded – undo
35 37
     }
36 38
 }
37 39
 
38
-if (!\function_exists('p')) {
40
+if (!\function_exists('p'))
41
+{
39 42
     /**
40 43
      * Pluralize string using language pluralization options and specified numeric value.
41 44
      *
@@ -51,7 +54,8 @@  discard block
 block discarded – undo
51 54
     {
52 55
         /** @psalm-suppress InternalMethod */
53 56
         $container = ContainerScope::getContainer();
54
-        if (empty($container) || !$container->has(TranslatorInterface::class)) {
57
+        if (empty($container) || !$container->has(TranslatorInterface::class))
58
+        {
55 59
             throw new ScopeException(
56 60
                 '`TranslatorInterface` binding is missing or container scope is not set'
57 61
             );
Please login to merge, or discard this patch.
src/Translator/src/Catalogue/RuntimeLoader.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 
32 32
     public function loadCatalogue(string $locale): CatalogueInterface
33 33
     {
34
-        if (!$this->hasLocale($locale)) {
34
+        if (!$this->hasLocale($locale)){
35 35
             throw new LocaleException($locale);
36 36
         }
37 37
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,8 @@
 block discarded – undo
31 31
 
32 32
     public function loadCatalogue(string $locale): CatalogueInterface
33 33
     {
34
-        if (!$this->hasLocale($locale)) {
34
+        if (!$this->hasLocale($locale))
35
+        {
35 36
             throw new LocaleException($locale);
36 37
         }
37 38
 
Please login to merge, or discard this patch.
src/Translator/src/Catalogue/CatalogueManager.php 2 patches
Braces   +13 added lines, -6 removed lines patch added patch discarded remove patch
@@ -30,12 +30,14 @@  discard block
 block discarded – undo
30 30
 
31 31
     public function getLocales(): array
32 32
     {
33
-        if ($this->locales !== []) {
33
+        if ($this->locales !== [])
34
+        {
34 35
             return $this->locales;
35 36
         }
36 37
 
37 38
         $this->locales = (array)$this->cache->getLocales();
38
-        if ($this->locales === []) {
39
+        if ($this->locales === [])
40
+        {
39 41
             $this->locales = $this->loader->getLocales();
40 42
             $this->cache->setLocales($this->locales);
41 43
         }
@@ -45,14 +47,18 @@  discard block
 block discarded – undo
45 47
 
46 48
     public function load(string $locale): CatalogueInterface
47 49
     {
48
-        if (isset($this->catalogues[$locale])) {
50
+        if (isset($this->catalogues[$locale]))
51
+        {
49 52
             return $this->catalogues[$locale];
50 53
         }
51 54
 
52 55
         $data = (array)$this->cache->loadLocale($locale);
53
-        if (!empty($data)) {
56
+        if (!empty($data))
57
+        {
54 58
             $this->catalogues[$locale] = new Catalogue($locale, $data);
55
-        } else {
59
+        }
60
+        else
61
+        {
56 62
             $this->catalogues[$locale] = $this->loader->loadCatalogue($locale);
57 63
         }
58 64
 
@@ -80,7 +86,8 @@  discard block
 block discarded – undo
80 86
     public function reset(): void
81 87
     {
82 88
         $this->cache->setLocales(null);
83
-        foreach ($this->getLocales() as $locale) {
89
+        foreach ($this->getLocales() as $locale)
90
+        {
84 91
             $this->cache->saveLocale($locale, null);
85 92
         }
86 93
 
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -24,18 +24,18 @@  discard block
 block discarded – undo
24 24
     public function __construct(
25 25
         private readonly LoaderInterface $loader,
26 26
         ?CacheInterface $cache = null
27
-    ) {
27
+    ){
28 28
         $this->cache = $cache ?? new NullCache();
29 29
     }
30 30
 
31 31
     public function getLocales(): array
32 32
     {
33
-        if ($this->locales !== []) {
33
+        if ($this->locales !== []){
34 34
             return $this->locales;
35 35
         }
36 36
 
37 37
         $this->locales = (array)$this->cache->getLocales();
38
-        if ($this->locales === []) {
38
+        if ($this->locales === []){
39 39
             $this->locales = $this->loader->getLocales();
40 40
             $this->cache->setLocales($this->locales);
41 41
         }
@@ -45,14 +45,14 @@  discard block
 block discarded – undo
45 45
 
46 46
     public function load(string $locale): CatalogueInterface
47 47
     {
48
-        if (isset($this->catalogues[$locale])) {
48
+        if (isset($this->catalogues[$locale])){
49 49
             return $this->catalogues[$locale];
50 50
         }
51 51
 
52 52
         $data = (array)$this->cache->loadLocale($locale);
53
-        if (!empty($data)) {
53
+        if (!empty($data)){
54 54
             $this->catalogues[$locale] = new Catalogue($locale, $data);
55
-        } else {
55
+        }else{
56 56
             $this->catalogues[$locale] = $this->loader->loadCatalogue($locale);
57 57
         }
58 58
 
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     public function reset(): void
81 81
     {
82 82
         $this->cache->setLocales(null);
83
-        foreach ($this->getLocales() as $locale) {
83
+        foreach ($this->getLocales() as $locale){
84 84
             $this->cache->saveLocale($locale, null);
85 85
         }
86 86
 
Please login to merge, or discard this patch.
src/Translator/src/Catalogue.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     public function __construct(
20 20
         private readonly string $locale,
21 21
         private array $data = []
22
-    ) {
22
+    ){
23 23
     }
24 24
 
25 25
     public function getLocale(): string
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function has(string $domain, string $id): bool
36 36
     {
37
-        if (!isset($this->data[$domain])) {
37
+        if (!isset($this->data[$domain])){
38 38
             return false;
39 39
         }
40 40
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
     public function get(string $domain, string $id): string
45 45
     {
46
-        if (!$this->has($domain, $id)) {
46
+        if (!$this->has($domain, $id)){
47 47
             throw new CatalogueException(\sprintf("Undefined string in domain '%s'", $domain));
48 48
         }
49 49
 
@@ -66,15 +66,15 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public function mergeFrom(MessageCatalogue $catalogue, bool $follow = true): void
68 68
     {
69
-        foreach ($catalogue->all() as $domain => $messages) {
70
-            if (!isset($this->data[$domain])) {
69
+        foreach ($catalogue->all() as $domain => $messages){
70
+            if (!isset($this->data[$domain])){
71 71
                 $this->data[$domain] = [];
72 72
             }
73 73
 
74
-            if ($follow) {
74
+            if ($follow){
75 75
                 //MessageCatalogue string has higher priority that string stored in memory
76 76
                 $this->data[$domain] = \array_merge($messages, $this->data[$domain]);
77
-            } else {
77
+            }else{
78 78
                 $this->data[$domain] = \array_merge($this->data[$domain], $messages);
79 79
             }
80 80
         }
Please login to merge, or discard this patch.
Braces   +13 added lines, -6 removed lines patch added patch discarded remove patch
@@ -34,7 +34,8 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function has(string $domain, string $id): bool
36 36
     {
37
-        if (!isset($this->data[$domain])) {
37
+        if (!isset($this->data[$domain]))
38
+        {
38 39
             return false;
39 40
         }
40 41
 
@@ -43,7 +44,8 @@  discard block
 block discarded – undo
43 44
 
44 45
     public function get(string $domain, string $id): string
45 46
     {
46
-        if (!$this->has($domain, $id)) {
47
+        if (!$this->has($domain, $id))
48
+        {
47 49
             throw new CatalogueException(\sprintf("Undefined string in domain '%s'", $domain));
48 50
         }
49 51
 
@@ -66,15 +68,20 @@  discard block
 block discarded – undo
66 68
      */
67 69
     public function mergeFrom(MessageCatalogue $catalogue, bool $follow = true): void
68 70
     {
69
-        foreach ($catalogue->all() as $domain => $messages) {
70
-            if (!isset($this->data[$domain])) {
71
+        foreach ($catalogue->all() as $domain => $messages)
72
+        {
73
+            if (!isset($this->data[$domain]))
74
+            {
71 75
                 $this->data[$domain] = [];
72 76
             }
73 77
 
74
-            if ($follow) {
78
+            if ($follow)
79
+            {
75 80
                 //MessageCatalogue string has higher priority that string stored in memory
76 81
                 $this->data[$domain] = \array_merge($messages, $this->data[$domain]);
77
-            } else {
82
+            }
83
+            else
84
+            {
78 85
                 $this->data[$domain] = \array_merge($this->data[$domain], $messages);
79 86
             }
80 87
         }
Please login to merge, or discard this patch.
src/Distribution/src/Internal/DateTimeIntervalFactory.php 2 patches
Braces   +8 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,11 +19,16 @@
 block discarded – undo
19 19
 
20 20
     public function create(mixed $duration): \DateInterval
21 21
     {
22
-        try {
22
+        try
23
+        {
23 24
             return $this->createOrFail($duration);
24
-        } catch (\InvalidArgumentException $e) {
25
+        }
26
+        catch (\InvalidArgumentException $e)
27
+        {
25 28
             throw $e;
26
-        } catch (\Throwable $e) {
29
+        }
30
+        catch (\Throwable $e)
31
+        {
27 32
             throw new \InvalidArgumentException($e->getMessage(), (int)$e->getCode(), $e);
28 33
         }
29 34
     }
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -14,16 +14,16 @@  discard block
 block discarded – undo
14 14
 
15 15
     public function __construct(
16 16
         private readonly DateTimeFactoryInterface $factory = new DateTimeFactory()
17
-    ) {
17
+    ){
18 18
     }
19 19
 
20 20
     public function create(mixed $duration): \DateInterval
21 21
     {
22
-        try {
22
+        try{
23 23
             return $this->createOrFail($duration);
24
-        } catch (\InvalidArgumentException $e) {
24
+        }catch (\InvalidArgumentException $e){
25 25
             throw $e;
26
-        } catch (\Throwable $e) {
26
+        }catch (\Throwable $e){
27 27
             throw new \InvalidArgumentException($e->getMessage(), (int)$e->getCode(), $e);
28 28
         }
29 29
     }
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
             $duration instanceof \DateInterval => $duration,
45 45
             $duration instanceof \DateTimeInterface => $this->factory->now()->diff($duration),
46 46
             \is_string($duration) => new \DateInterval($duration),
47
-            \is_int($duration) => new \DateInterval('PT' . $duration . 'S'),
47
+            \is_int($duration) => new \DateInterval('PT'.$duration.'S'),
48 48
             $duration === null => new \DateInterval('PT0S'),
49 49
             default => throw new \InvalidArgumentException(
50 50
                 \sprintf(self::ERROR_INVALID_INTERVAL_TYPE, \get_debug_type($duration))
Please login to merge, or discard this patch.
src/Distribution/src/Config/DistributionConfig.php 2 patches
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@  discard block
 block discarded – undo
51 51
 
52 52
     private function bootResolvers(array $config): void
53 53
     {
54
-        foreach ($config['resolvers'] ?? [] as $name => $child) {
55
-            if (!\is_string($name)) {
54
+        foreach ($config['resolvers'] ?? [] as $name => $child){
55
+            if (!\is_string($name)){
56 56
                 throw new InvalidArgumentException(
57 57
                     \vsprintf('Distribution driver config key must be a string, but %s given', [
58 58
                         \get_debug_type($child),
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
                 );
61 61
             }
62 62
 
63
-            if (!\is_array($child)) {
63
+            if (!\is_array($child)){
64 64
                 throw new InvalidArgumentException(
65 65
                     \vsprintf('Distribution driver config `%s` must be an array, but %s given', [
66 66
                         $name,
@@ -77,9 +77,9 @@  discard block
 block discarded – undo
77 77
     {
78 78
         $default = $config['default'] ?? null;
79 79
 
80
-        if ($default !== null) {
80
+        if ($default !== null){
81 81
             // Validate config
82
-            if (!\is_string($default)) {
82
+            if (!\is_string($default)){
83 83
                 throw new InvalidArgumentException(
84 84
                     \vsprintf('Distribution config default driver must be a string, but %s given', [
85 85
                         \get_debug_type($default),
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
     private function createResolver(string $name, array $config): UriResolverInterface
95 95
     {
96
-        if (!isset($config['type']) || !\is_string($config['type'])) {
96
+        if (!isset($config['type']) || !\is_string($config['type'])){
97 97
             throw $this->invalidConfigKey($name, 'type', 'string');
98 98
         }
99 99
 
@@ -107,17 +107,17 @@  discard block
 block discarded – undo
107 107
 
108 108
     private function createCustomResolver(string $type, string $name, array $config): UriResolverInterface
109 109
     {
110
-        if (!\is_subclass_of($type, UriResolverInterface::class, true)) {
110
+        if (!\is_subclass_of($type, UriResolverInterface::class, true)){
111 111
             throw $this->invalidConfigKey($name, 'type', UriResolverInterface::class);
112 112
         }
113 113
 
114
-        if (isset($config['options']) && !\is_array($config['options'])) {
114
+        if (isset($config['options']) && !\is_array($config['options'])){
115 115
             throw $this->invalidConfigKey($name, 'options', 'array');
116 116
         }
117 117
 
118
-        try {
118
+        try{
119 119
             return new $type(...\array_values($config['options'] ?? []));
120
-        } catch (\Throwable $e) {
120
+        }catch (\Throwable $e){
121 121
             $message = 'An error occurred while resolver `%s` initializing: %s';
122 122
             throw new InvalidArgumentException(\sprintf($message, $name, $e->getMessage()), 0, $e);
123 123
         }
@@ -126,36 +126,36 @@  discard block
 block discarded – undo
126 126
     private function createS3Resolver(string $name, array $config): UriResolverInterface
127 127
     {
128 128
         // Required config options
129
-        if (!isset($config['region']) || !\is_string($config['region'])) {
129
+        if (!isset($config['region']) || !\is_string($config['region'])){
130 130
             throw $this->invalidConfigKey($name, 'region', 'string');
131 131
         }
132 132
 
133
-        if (!isset($config['key']) || !\is_string($config['key'])) {
133
+        if (!isset($config['key']) || !\is_string($config['key'])){
134 134
             throw $this->invalidConfigKey($name, 'key', 'string');
135 135
         }
136 136
 
137
-        if (!isset($config['secret']) || !\is_string($config['secret'])) {
137
+        if (!isset($config['secret']) || !\is_string($config['secret'])){
138 138
             throw $this->invalidConfigKey($name, 'secret', 'string');
139 139
         }
140 140
 
141
-        if (!isset($config['bucket']) || !\is_string($config['bucket'])) {
141
+        if (!isset($config['bucket']) || !\is_string($config['bucket'])){
142 142
             throw $this->invalidConfigKey($name, 'bucket', 'string');
143 143
         }
144 144
 
145 145
         // Optional config options
146
-        if (!\is_string($config['prefix'] ?? '')) {
146
+        if (!\is_string($config['prefix'] ?? '')){
147 147
             throw $this->invalidConfigKey($name, 'prefix', 'string or null');
148 148
         }
149 149
 
150
-        if (!\is_string($config['version'] ?? '')) {
150
+        if (!\is_string($config['version'] ?? '')){
151 151
             throw $this->invalidConfigKey($name, 'version', 'string or null');
152 152
         }
153 153
 
154
-        if (!\is_string($config['token'] ?? '')) {
154
+        if (!\is_string($config['token'] ?? '')){
155 155
             throw $this->invalidConfigKey($name, 'token', 'string or null');
156 156
         }
157 157
 
158
-        if (!\is_int($config['expires'] ?? 0)) {
158
+        if (!\is_int($config['expires'] ?? 0)){
159 159
             throw $this->invalidConfigKey($name, 'expires', 'positive int (unix timestamp)');
160 160
         }
161 161
 
@@ -180,19 +180,19 @@  discard block
 block discarded – undo
180 180
 
181 181
     private function createCloudFrontResolver(string $name, array $config): UriResolverInterface
182 182
     {
183
-        if (!isset($config['key']) || !\is_string($config['key'])) {
183
+        if (!isset($config['key']) || !\is_string($config['key'])){
184 184
             throw $this->invalidConfigKey($name, 'key', 'string');
185 185
         }
186 186
 
187
-        if (!isset($config['private']) || !\is_string($config['private'])) {
187
+        if (!isset($config['private']) || !\is_string($config['private'])){
188 188
             throw $this->invalidConfigKey($name, 'private', 'string value or path to key file');
189 189
         }
190 190
 
191
-        if (!isset($config['domain']) || !\is_string($config['domain'])) {
191
+        if (!isset($config['domain']) || !\is_string($config['domain'])){
192 192
             throw $this->invalidConfigKey($name, 'domain', 'string');
193 193
         }
194 194
 
195
-        if (!\is_string($config['prefix'] ?? '')) {
195
+        if (!\is_string($config['prefix'] ?? '')){
196 196
             throw $this->invalidConfigKey($name, 'prefix', 'string or null');
197 197
         }
198 198
 
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
 
207 207
     private function createStaticResolver(string $name, array $config): UriResolverInterface
208 208
     {
209
-        if (!isset($config['uri']) || !\is_string($config['uri'])) {
209
+        if (!isset($config['uri']) || !\is_string($config['uri'])){
210 210
             throw $this->invalidConfigKey($name, 'uri', 'string');
211 211
         }
212 212
 
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 
216 216
     private function createUri(string $name, string $uri, array $config): UriInterface
217 217
     {
218
-        if (!\is_string($config['factory'] ?? '')) {
218
+        if (!\is_string($config['factory'] ?? '')){
219 219
             throw $this->invalidConfigKey($name, 'factory', 'string (PSR-7 uri factory implementation)');
220 220
         }
221 221
 
Please login to merge, or discard this patch.
Braces   +49 added lines, -24 removed lines patch added patch discarded remove patch
@@ -51,8 +51,10 @@  discard block
 block discarded – undo
51 51
 
52 52
     private function bootResolvers(array $config): void
53 53
     {
54
-        foreach ($config['resolvers'] ?? [] as $name => $child) {
55
-            if (!\is_string($name)) {
54
+        foreach ($config['resolvers'] ?? [] as $name => $child)
55
+        {
56
+            if (!\is_string($name))
57
+            {
56 58
                 throw new InvalidArgumentException(
57 59
                     \vsprintf('Distribution driver config key must be a string, but %s given', [
58 60
                         \get_debug_type($child),
@@ -60,7 +62,8 @@  discard block
 block discarded – undo
60 62
                 );
61 63
             }
62 64
 
63
-            if (!\is_array($child)) {
65
+            if (!\is_array($child))
66
+            {
64 67
                 throw new InvalidArgumentException(
65 68
                     \vsprintf('Distribution driver config `%s` must be an array, but %s given', [
66 69
                         $name,
@@ -77,9 +80,11 @@  discard block
 block discarded – undo
77 80
     {
78 81
         $default = $config['default'] ?? null;
79 82
 
80
-        if ($default !== null) {
83
+        if ($default !== null)
84
+        {
81 85
             // Validate config
82
-            if (!\is_string($default)) {
86
+            if (!\is_string($default))
87
+            {
83 88
                 throw new InvalidArgumentException(
84 89
                     \vsprintf('Distribution config default driver must be a string, but %s given', [
85 90
                         \get_debug_type($default),
@@ -93,7 +98,8 @@  discard block
 block discarded – undo
93 98
 
94 99
     private function createResolver(string $name, array $config): UriResolverInterface
95 100
     {
96
-        if (!isset($config['type']) || !\is_string($config['type'])) {
101
+        if (!isset($config['type']) || !\is_string($config['type']))
102
+        {
97 103
             throw $this->invalidConfigKey($name, 'type', 'string');
98 104
         }
99 105
 
@@ -107,17 +113,22 @@  discard block
 block discarded – undo
107 113
 
108 114
     private function createCustomResolver(string $type, string $name, array $config): UriResolverInterface
109 115
     {
110
-        if (!\is_subclass_of($type, UriResolverInterface::class, true)) {
116
+        if (!\is_subclass_of($type, UriResolverInterface::class, true))
117
+        {
111 118
             throw $this->invalidConfigKey($name, 'type', UriResolverInterface::class);
112 119
         }
113 120
 
114
-        if (isset($config['options']) && !\is_array($config['options'])) {
121
+        if (isset($config['options']) && !\is_array($config['options']))
122
+        {
115 123
             throw $this->invalidConfigKey($name, 'options', 'array');
116 124
         }
117 125
 
118
-        try {
126
+        try
127
+        {
119 128
             return new $type(...\array_values($config['options'] ?? []));
120
-        } catch (\Throwable $e) {
129
+        }
130
+        catch (\Throwable $e)
131
+        {
121 132
             $message = 'An error occurred while resolver `%s` initializing: %s';
122 133
             throw new InvalidArgumentException(\sprintf($message, $name, $e->getMessage()), 0, $e);
123 134
         }
@@ -126,36 +137,44 @@  discard block
 block discarded – undo
126 137
     private function createS3Resolver(string $name, array $config): UriResolverInterface
127 138
     {
128 139
         // Required config options
129
-        if (!isset($config['region']) || !\is_string($config['region'])) {
140
+        if (!isset($config['region']) || !\is_string($config['region']))
141
+        {
130 142
             throw $this->invalidConfigKey($name, 'region', 'string');
131 143
         }
132 144
 
133
-        if (!isset($config['key']) || !\is_string($config['key'])) {
145
+        if (!isset($config['key']) || !\is_string($config['key']))
146
+        {
134 147
             throw $this->invalidConfigKey($name, 'key', 'string');
135 148
         }
136 149
 
137
-        if (!isset($config['secret']) || !\is_string($config['secret'])) {
150
+        if (!isset($config['secret']) || !\is_string($config['secret']))
151
+        {
138 152
             throw $this->invalidConfigKey($name, 'secret', 'string');
139 153
         }
140 154
 
141
-        if (!isset($config['bucket']) || !\is_string($config['bucket'])) {
155
+        if (!isset($config['bucket']) || !\is_string($config['bucket']))
156
+        {
142 157
             throw $this->invalidConfigKey($name, 'bucket', 'string');
143 158
         }
144 159
 
145 160
         // Optional config options
146
-        if (!\is_string($config['prefix'] ?? '')) {
161
+        if (!\is_string($config['prefix'] ?? ''))
162
+        {
147 163
             throw $this->invalidConfigKey($name, 'prefix', 'string or null');
148 164
         }
149 165
 
150
-        if (!\is_string($config['version'] ?? '')) {
166
+        if (!\is_string($config['version'] ?? ''))
167
+        {
151 168
             throw $this->invalidConfigKey($name, 'version', 'string or null');
152 169
         }
153 170
 
154
-        if (!\is_string($config['token'] ?? '')) {
171
+        if (!\is_string($config['token'] ?? ''))
172
+        {
155 173
             throw $this->invalidConfigKey($name, 'token', 'string or null');
156 174
         }
157 175
 
158
-        if (!\is_int($config['expires'] ?? 0)) {
176
+        if (!\is_int($config['expires'] ?? 0))
177
+        {
159 178
             throw $this->invalidConfigKey($name, 'expires', 'positive int (unix timestamp)');
160 179
         }
161 180
 
@@ -180,19 +199,23 @@  discard block
 block discarded – undo
180 199
 
181 200
     private function createCloudFrontResolver(string $name, array $config): UriResolverInterface
182 201
     {
183
-        if (!isset($config['key']) || !\is_string($config['key'])) {
202
+        if (!isset($config['key']) || !\is_string($config['key']))
203
+        {
184 204
             throw $this->invalidConfigKey($name, 'key', 'string');
185 205
         }
186 206
 
187
-        if (!isset($config['private']) || !\is_string($config['private'])) {
207
+        if (!isset($config['private']) || !\is_string($config['private']))
208
+        {
188 209
             throw $this->invalidConfigKey($name, 'private', 'string value or path to key file');
189 210
         }
190 211
 
191
-        if (!isset($config['domain']) || !\is_string($config['domain'])) {
212
+        if (!isset($config['domain']) || !\is_string($config['domain']))
213
+        {
192 214
             throw $this->invalidConfigKey($name, 'domain', 'string');
193 215
         }
194 216
 
195
-        if (!\is_string($config['prefix'] ?? '')) {
217
+        if (!\is_string($config['prefix'] ?? ''))
218
+        {
196 219
             throw $this->invalidConfigKey($name, 'prefix', 'string or null');
197 220
         }
198 221
 
@@ -206,7 +229,8 @@  discard block
 block discarded – undo
206 229
 
207 230
     private function createStaticResolver(string $name, array $config): UriResolverInterface
208 231
     {
209
-        if (!isset($config['uri']) || !\is_string($config['uri'])) {
232
+        if (!isset($config['uri']) || !\is_string($config['uri']))
233
+        {
210 234
             throw $this->invalidConfigKey($name, 'uri', 'string');
211 235
         }
212 236
 
@@ -215,7 +239,8 @@  discard block
 block discarded – undo
215 239
 
216 240
     private function createUri(string $name, string $uri, array $config): UriInterface
217 241
     {
218
-        if (!\is_string($config['factory'] ?? '')) {
242
+        if (!\is_string($config['factory'] ?? ''))
243
+        {
219 244
             throw $this->invalidConfigKey($name, 'factory', 'string (PSR-7 uri factory implementation)');
220 245
         }
221 246
 
Please login to merge, or discard this patch.
src/Distribution/src/Resolver/ExpirationAwareResolver.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 
73 73
     private function resolveExpirationInterval(mixed $expiration): \DateInterval
74 74
     {
75
-        if ($expiration === null) {
75
+        if ($expiration === null){
76 76
             return $this->expiration;
77 77
         }
78 78
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,8 @@
 block discarded – undo
72 72
 
73 73
     private function resolveExpirationInterval(mixed $expiration): \DateInterval
74 74
     {
75
-        if ($expiration === null) {
75
+        if ($expiration === null)
76
+        {
76 77
             return $this->expiration;
77 78
         }
78 79
 
Please login to merge, or discard this patch.
src/Distribution/src/Manager.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
     {
37 37
         $name ??= $this->default;
38 38
 
39
-        if (!isset($this->resolvers[$name])) {
39
+        if (!isset($this->resolvers[$name])){
40 40
             throw new \InvalidArgumentException(\sprintf(self::ERROR_NOT_FOUND, $name));
41 41
         }
42 42
 
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 
46 46
     public function add(string $name, UriResolverInterface $resolver, bool $overwrite = false): void
47 47
     {
48
-        if ($overwrite === false && isset($this->resolvers[$name])) {
48
+        if ($overwrite === false && isset($this->resolvers[$name])){
49 49
             throw new \InvalidArgumentException(\sprintf(self::ERROR_REDEFINITION, $name));
50 50
         }
51 51
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,8 @@  discard block
 block discarded – undo
36 36
     {
37 37
         $name ??= $this->default;
38 38
 
39
-        if (!isset($this->resolvers[$name])) {
39
+        if (!isset($this->resolvers[$name]))
40
+        {
40 41
             throw new \InvalidArgumentException(\sprintf(self::ERROR_NOT_FOUND, $name));
41 42
         }
42 43
 
@@ -45,7 +46,8 @@  discard block
 block discarded – undo
45 46
 
46 47
     public function add(string $name, UriResolverInterface $resolver, bool $overwrite = false): void
47 48
     {
48
-        if ($overwrite === false && isset($this->resolvers[$name])) {
49
+        if ($overwrite === false && isset($this->resolvers[$name]))
50
+        {
49 51
             throw new \InvalidArgumentException(\sprintf(self::ERROR_REDEFINITION, $name));
50 52
         }
51 53
 
Please login to merge, or discard this patch.
src/Core/tests/Internal/Resolver/PositionArgumentTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
                 new DateTimeImmutable(),
107 107
                 new EngineVAZ2101(),
108 108
             ],
109
-            validate: false
109
+            validate : false
110 110
         );
111 111
 
112 112
         $this->assertCount(2, $result);
Please login to merge, or discard this patch.