@@ -7,11 +7,11 @@ |
||
7 | 7 | final class Context implements ContextInterface |
8 | 8 | { |
9 | 9 | public function __construct( |
10 | - public \Stringable|string|null $value, |
|
11 | - ) { |
|
10 | + public \Stringable | string | null $value, |
|
11 | + ){ |
|
12 | 12 | } |
13 | 13 | |
14 | - public function getValue(): \Stringable|string|null |
|
14 | + public function getValue(): \Stringable | string | null |
|
15 | 15 | { |
16 | 16 | return $this->value; |
17 | 17 | } |
@@ -6,5 +6,5 @@ |
||
6 | 6 | |
7 | 7 | interface ContextInterface |
8 | 8 | { |
9 | - public function getValue(): \Stringable|string|null; |
|
9 | + public function getValue(): \Stringable | string | null; |
|
10 | 10 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | // from the current `foo` scope |
43 | 43 | self::assertInstanceOf(KVLogger::class, $logger); |
44 | 44 | |
45 | - for ($i = 0; $i < 10; $i++) { |
|
45 | + for ($i = 0; $i < 10; $i++){ |
|
46 | 46 | // because of proxy |
47 | 47 | self::assertNotInstanceOf(KVLogger::class, $carrier->getLogger()); |
48 | 48 | self::assertSame('kv', $carrier->logger->getName()); |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | // from the current `foo` scope |
63 | 63 | self::assertInstanceOf(FileLogger::class, $logger); |
64 | 64 | |
65 | - for ($i = 0; $i < 10; $i++) { |
|
65 | + for ($i = 0; $i < 10; $i++){ |
|
66 | 66 | // because of proxy |
67 | 67 | self::assertNotInstanceOf(FileLogger::class, $carrier->getLogger()); |
68 | 68 | self::assertSame('file', $carrier->logger->getName()); |
@@ -79,14 +79,14 @@ discard block |
||
79 | 79 | $root = new Container(); |
80 | 80 | $root->getBinder('http')->bindSingleton(LoggerInterface::class, KVLogger::class); |
81 | 81 | |
82 | - $root->runScope(new Scope(), static function (Container $c1) { |
|
82 | + $root->runScope(new Scope(), static function (Container $c1){ |
|
83 | 83 | $c1->runScope( |
84 | 84 | new Scope(name: 'http'), |
85 | 85 | static function ( |
86 | 86 | ScopedProxyLoggerCarrier $carrier, |
87 | 87 | ScopedProxyLoggerCarrier $carrier2, |
88 | 88 | LoggerInterface $logger |
89 | - ) { |
|
89 | + ){ |
|
90 | 90 | // from the current `foo` scope |
91 | 91 | self::assertInstanceOf(KVLogger::class, $logger); |
92 | 92 | |
@@ -106,10 +106,10 @@ discard block |
||
106 | 106 | $root = new Container(); |
107 | 107 | $root->getBinder('foo')->bind(LoggerInterface::class, KVLogger::class); |
108 | 108 | |
109 | - $root->runScope(new Scope(), static function (Container $c1) { |
|
109 | + $root->runScope(new Scope(), static function (Container $c1){ |
|
110 | 110 | $c1->runScope( |
111 | 111 | new Scope(name: 'foo'), |
112 | - static function (ScopedProxyLoggerCarrier $carrier, LoggerInterface $logger) { |
|
112 | + static function (ScopedProxyLoggerCarrier $carrier, LoggerInterface $logger){ |
|
113 | 113 | // from the current `foo` scope |
114 | 114 | self::assertInstanceOf(KVLogger::class, $logger); |
115 | 115 | |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | ->bind( |
131 | 131 | ContextInterface::class, |
132 | 132 | new \Spiral\Core\Config\Injectable( |
133 | - new class implements InjectorInterface { |
|
133 | + new class implements InjectorInterface{ |
|
134 | 134 | public function createInjection(\ReflectionClass $class, mixed $context = null): Context |
135 | 135 | { |
136 | 136 | return new Context($context); |
@@ -139,8 +139,8 @@ discard block |
||
139 | 139 | ) |
140 | 140 | ); |
141 | 141 | |
142 | - $root->runScope(new Scope(), static function (Container $c1) { |
|
143 | - $c1->runScope(new Scope(name: 'foo'), static function (Container $c, ContextInterface $param) { |
|
142 | + $root->runScope(new Scope(), static function (Container $c1){ |
|
143 | + $c1->runScope(new Scope(name: 'foo'), static function (Container $c, ContextInterface $param){ |
|
144 | 144 | self::assertInstanceOf(ReflectionParameter::class, $param->value); |
145 | 145 | self::assertSame('param', $param->value->getName()); |
146 | 146 | |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | ->bind( |
172 | 172 | ContextInterface::class, |
173 | 173 | new \Spiral\Core\Config\Injectable( |
174 | - new class implements InjectorInterface { |
|
174 | + new class implements InjectorInterface{ |
|
175 | 175 | public function createInjection(\ReflectionClass $class, mixed $context = null): Context |
176 | 176 | { |
177 | 177 | return new Context($context); |
@@ -181,15 +181,15 @@ discard block |
||
181 | 181 | ); |
182 | 182 | |
183 | 183 | FiberHelper::runFiberSequence( |
184 | - static fn() => $root->runScope(new Scope(name: 'foo'), static function (ContextInterface $ctx) { |
|
185 | - for ($i = 0; $i < 10; $i++) { |
|
184 | + static fn() => $root->runScope(new Scope(name: 'foo'), static function (ContextInterface $ctx){ |
|
185 | + for ($i = 0; $i < 10; $i++){ |
|
186 | 186 | self::assertInstanceOf(ReflectionParameter::class, $ctx->getValue(), 'Context injected'); |
187 | 187 | self::assertSame('ctx', $ctx->getValue()->getName()); |
188 | 188 | \Fiber::suspend(); |
189 | 189 | } |
190 | 190 | }), |
191 | - static fn() => $root->runScope(new Scope(name: 'foo'), static function (ContextInterface $context) { |
|
192 | - for ($i = 0; $i < 10; $i++) { |
|
191 | + static fn() => $root->runScope(new Scope(name: 'foo'), static function (ContextInterface $context){ |
|
192 | + for ($i = 0; $i < 10; $i++){ |
|
193 | 193 | self::assertInstanceOf(ReflectionParameter::class, $context->getValue(), 'Context injected'); |
194 | 194 | self::assertSame('context', $context->getValue()->getName()); |
195 | 195 | \Fiber::suspend(); |
@@ -38,11 +38,13 @@ discard block |
||
38 | 38 | LoggerInterface::class => KVLogger::class, |
39 | 39 | ], |
40 | 40 | ), |
41 | - static function (ScopedProxyLoggerCarrier $carrier, LoggerInterface $logger) use ($lc) { |
|
41 | + static function (ScopedProxyLoggerCarrier $carrier, LoggerInterface $logger) use ($lc) |
|
42 | + { |
|
42 | 43 | // from the current `foo` scope |
43 | 44 | self::assertInstanceOf(KVLogger::class, $logger); |
44 | 45 | |
45 | - for ($i = 0; $i < 10; $i++) { |
|
46 | + for ($i = 0; $i < 10; $i++) |
|
47 | + { |
|
46 | 48 | // because of proxy |
47 | 49 | self::assertNotInstanceOf(KVLogger::class, $carrier->getLogger()); |
48 | 50 | self::assertSame('kv', $carrier->logger->getName()); |
@@ -58,11 +60,13 @@ discard block |
||
58 | 60 | LoggerInterface::class => FileLogger::class, |
59 | 61 | ], |
60 | 62 | ), |
61 | - static function (ScopedProxyLoggerCarrier $carrier, LoggerInterface $logger) use ($lc) { |
|
63 | + static function (ScopedProxyLoggerCarrier $carrier, LoggerInterface $logger) use ($lc) |
|
64 | + { |
|
62 | 65 | // from the current `foo` scope |
63 | 66 | self::assertInstanceOf(FileLogger::class, $logger); |
64 | 67 | |
65 | - for ($i = 0; $i < 10; $i++) { |
|
68 | + for ($i = 0; $i < 10; $i++) |
|
69 | + { |
|
66 | 70 | // because of proxy |
67 | 71 | self::assertNotInstanceOf(FileLogger::class, $carrier->getLogger()); |
68 | 72 | self::assertSame('file', $carrier->logger->getName()); |
@@ -79,7 +83,8 @@ discard block |
||
79 | 83 | $root = new Container(); |
80 | 84 | $root->getBinder('http')->bindSingleton(LoggerInterface::class, KVLogger::class); |
81 | 85 | |
82 | - $root->runScope(new Scope(), static function (Container $c1) { |
|
86 | + $root->runScope(new Scope(), static function (Container $c1) |
|
87 | + { |
|
83 | 88 | $c1->runScope( |
84 | 89 | new Scope(name: 'http'), |
85 | 90 | static function ( |
@@ -106,10 +111,12 @@ discard block |
||
106 | 111 | $root = new Container(); |
107 | 112 | $root->getBinder('foo')->bind(LoggerInterface::class, KVLogger::class); |
108 | 113 | |
109 | - $root->runScope(new Scope(), static function (Container $c1) { |
|
114 | + $root->runScope(new Scope(), static function (Container $c1) |
|
115 | + { |
|
110 | 116 | $c1->runScope( |
111 | 117 | new Scope(name: 'foo'), |
112 | - static function (ScopedProxyLoggerCarrier $carrier, LoggerInterface $logger) { |
|
118 | + static function (ScopedProxyLoggerCarrier $carrier, LoggerInterface $logger) |
|
119 | + { |
|
113 | 120 | // from the current `foo` scope |
114 | 121 | self::assertInstanceOf(KVLogger::class, $logger); |
115 | 122 | |
@@ -130,7 +137,8 @@ discard block |
||
130 | 137 | ->bind( |
131 | 138 | ContextInterface::class, |
132 | 139 | new \Spiral\Core\Config\Injectable( |
133 | - new class implements InjectorInterface { |
|
140 | + new class implements InjectorInterface |
|
141 | + { |
|
134 | 142 | public function createInjection(\ReflectionClass $class, mixed $context = null): Context |
135 | 143 | { |
136 | 144 | return new Context($context); |
@@ -139,8 +147,10 @@ discard block |
||
139 | 147 | ) |
140 | 148 | ); |
141 | 149 | |
142 | - $root->runScope(new Scope(), static function (Container $c1) { |
|
143 | - $c1->runScope(new Scope(name: 'foo'), static function (Container $c, ContextInterface $param) { |
|
150 | + $root->runScope(new Scope(), static function (Container $c1) |
|
151 | + { |
|
152 | + $c1->runScope(new Scope(name: 'foo'), static function (Container $c, ContextInterface $param) |
|
153 | + { |
|
144 | 154 | self::assertInstanceOf(ReflectionParameter::class, $param->value); |
145 | 155 | self::assertSame('param', $param->value->getName()); |
146 | 156 | |
@@ -171,7 +181,8 @@ discard block |
||
171 | 181 | ->bind( |
172 | 182 | ContextInterface::class, |
173 | 183 | new \Spiral\Core\Config\Injectable( |
174 | - new class implements InjectorInterface { |
|
184 | + new class implements InjectorInterface |
|
185 | + { |
|
175 | 186 | public function createInjection(\ReflectionClass $class, mixed $context = null): Context |
176 | 187 | { |
177 | 188 | return new Context($context); |
@@ -181,15 +192,19 @@ discard block |
||
181 | 192 | ); |
182 | 193 | |
183 | 194 | FiberHelper::runFiberSequence( |
184 | - static fn() => $root->runScope(new Scope(name: 'foo'), static function (ContextInterface $ctx) { |
|
185 | - for ($i = 0; $i < 10; $i++) { |
|
195 | + static fn() => $root->runScope(new Scope(name: 'foo'), static function (ContextInterface $ctx) |
|
196 | + { |
|
197 | + for ($i = 0; $i < 10; $i++) |
|
198 | + { |
|
186 | 199 | self::assertInstanceOf(ReflectionParameter::class, $ctx->getValue(), 'Context injected'); |
187 | 200 | self::assertSame('ctx', $ctx->getValue()->getName()); |
188 | 201 | \Fiber::suspend(); |
189 | 202 | } |
190 | 203 | }), |
191 | - static fn() => $root->runScope(new Scope(name: 'foo'), static function (ContextInterface $context) { |
|
192 | - for ($i = 0; $i < 10; $i++) { |
|
204 | + static fn() => $root->runScope(new Scope(name: 'foo'), static function (ContextInterface $context) |
|
205 | + { |
|
206 | + for ($i = 0; $i < 10; $i++) |
|
207 | + { |
|
193 | 208 | self::assertInstanceOf(ReflectionParameter::class, $context->getValue(), 'Context injected'); |
194 | 209 | self::assertSame('context', $context->getValue()->getName()); |
195 | 210 | \Fiber::suspend(); |
@@ -205,8 +220,10 @@ discard block |
||
205 | 220 | |
206 | 221 | $root->runScope( |
207 | 222 | new Scope(), |
208 | - static function (#[Proxy] ContainerInterface $cp) use ($root) { |
|
209 | - $root->runScope(new Scope(name: 'http'), static function (ContainerInterface $c) use ($cp) { |
|
223 | + static function (#[Proxy] ContainerInterface $cp) use ($root) |
|
224 | + { |
|
225 | + $root->runScope(new Scope(name: 'http'), static function (ContainerInterface $c) use ($cp) |
|
226 | + { |
|
210 | 227 | self::assertNotSame($c, $cp); |
211 | 228 | self::assertSame($c, $cp->get(ContainerInterface::class)); |
212 | 229 | self::assertInstanceOf(KVLogger::class, $cp->get(LoggerInterface::class)); |
@@ -23,10 +23,10 @@ discard block |
||
23 | 23 | $root = new Container(); |
24 | 24 | $root->bind(LoggerInterface::class, KVLogger::class); |
25 | 25 | |
26 | - $root->runScope(new Scope(), static function (Container $c1) { |
|
26 | + $root->runScope(new Scope(), static function (Container $c1){ |
|
27 | 27 | $c1->bind(LoggerInterface::class, FileLogger::class); |
28 | 28 | |
29 | - $c1->runScope(new Scope(), static function (LoggerCarrier $carrier, LoggerInterface $logger) { |
|
29 | + $c1->runScope(new Scope(), static function (LoggerCarrier $carrier, LoggerInterface $logger){ |
|
30 | 30 | // from the $root container |
31 | 31 | self::assertInstanceOf(KVLogger::class, $carrier->logger); |
32 | 32 | // from the $c1 container |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | $root = new Container(); |
41 | 41 | $root->bind(LoggerInterface::class, KVLogger::class); |
42 | 42 | |
43 | - $root->runScope(new Scope(), static function (Container $c1) { |
|
43 | + $root->runScope(new Scope(), static function (Container $c1){ |
|
44 | 44 | $c1->bind(LoggerInterface::class, FileLogger::class); |
45 | 45 | |
46 | 46 | self::assertInstanceOf( |
@@ -23,10 +23,12 @@ discard block |
||
23 | 23 | $root = new Container(); |
24 | 24 | $root->bind(LoggerInterface::class, KVLogger::class); |
25 | 25 | |
26 | - $root->runScope(new Scope(), static function (Container $c1) { |
|
26 | + $root->runScope(new Scope(), static function (Container $c1) |
|
27 | + { |
|
27 | 28 | $c1->bind(LoggerInterface::class, FileLogger::class); |
28 | 29 | |
29 | - $c1->runScope(new Scope(), static function (LoggerCarrier $carrier, LoggerInterface $logger) { |
|
30 | + $c1->runScope(new Scope(), static function (LoggerCarrier $carrier, LoggerInterface $logger) |
|
31 | + { |
|
30 | 32 | // from the $root container |
31 | 33 | self::assertInstanceOf(KVLogger::class, $carrier->logger); |
32 | 34 | // from the $c1 container |
@@ -40,7 +42,8 @@ discard block |
||
40 | 42 | $root = new Container(); |
41 | 43 | $root->bind(LoggerInterface::class, KVLogger::class); |
42 | 44 | |
43 | - $root->runScope(new Scope(), static function (Container $c1) { |
|
45 | + $root->runScope(new Scope(), static function (Container $c1) |
|
46 | + { |
|
44 | 47 | $c1->bind(LoggerInterface::class, FileLogger::class); |
45 | 48 | |
46 | 49 | self::assertInstanceOf( |
@@ -12,6 +12,6 @@ |
||
12 | 12 | trait ProxyTrait |
13 | 13 | { |
14 | 14 | private static string $__container_proxy_alias; |
15 | - private \Stringable|string|null $__container_proxy_context = null; |
|
15 | + private \Stringable | string | null $__container_proxy_context = null; |
|
16 | 16 | private ?ContainerInterface $__container_proxy_container = null; |
17 | 17 | } |
@@ -31,6 +31,6 @@ |
||
31 | 31 | public bool $proxyOverloads = false; |
32 | 32 | |
33 | 33 | public function __construct( |
34 | - ) { |
|
34 | + ){ |
|
35 | 35 | } |
36 | 36 | } |
@@ -32,7 +32,8 @@ discard block |
||
32 | 32 | $root->invoke(static function ( |
33 | 33 | #[Proxy] MockInterface $mock, |
34 | 34 | #[Proxy(/*proxyOverloads: true*/)] EmptyInterface $empty, |
35 | - ) use ($var) { |
|
35 | + ) use ($var) |
|
36 | + { |
|
36 | 37 | /** @var MockInterfaceImpl $proxy */ |
37 | 38 | $proxy = $$var; |
38 | 39 | $proxy->bar(name: 'foo'); // Possible to run |
@@ -49,7 +50,8 @@ discard block |
||
49 | 50 | |
50 | 51 | self::expectExceptionMessageMatches('/Call to undefined method/i'); |
51 | 52 | |
52 | - $root->invoke(static function (#[Proxy] EmptyInterface $proxy) { |
|
53 | + $root->invoke(static function (#[Proxy] EmptyInterface $proxy) |
|
54 | + { |
|
53 | 55 | $proxy->bar(name: 'foo'); // Possible to run |
54 | 56 | }); |
55 | 57 | } |
@@ -66,7 +68,8 @@ discard block |
||
66 | 68 | $root->invoke(static function ( |
67 | 69 | #[Proxy] MockInterface $mock, |
68 | 70 | #[Proxy(/*proxyOverloads: true*/)] EmptyInterface $empty, |
69 | - ) use ($var) { |
|
71 | + ) use ($var) |
|
72 | + { |
|
70 | 73 | /** @var MockInterfaceImpl $proxy */ |
71 | 74 | $proxy = $$var; |
72 | 75 | self::assertSame(['foo', 'bar', 'baz', 69], $proxy->extra('foo', 'bar', 'baz', 69)); |
@@ -88,7 +91,8 @@ discard block |
||
88 | 91 | $root->invoke(static function ( |
89 | 92 | #[Proxy] MockInterface $mock, |
90 | 93 | #[Proxy(/*proxyOverloads: true*/)] EmptyInterface $empty, |
91 | - ) use ($var) { |
|
94 | + ) use ($var) |
|
95 | + { |
|
92 | 96 | /** @var MockInterfaceImpl $proxy */ |
93 | 97 | $proxy = $$var; |
94 | 98 | self::assertSame(['foo', 'bar', 'baz', 69], $proxy->extraVariadic('foo', 'bar', 'baz', 69)); |
@@ -112,7 +116,8 @@ discard block |
||
112 | 116 | $root->bindSingleton(MockInterface::class, Stub\MockInterfaceImpl::class); |
113 | 117 | $root->bindSingleton(EmptyInterface::class, Stub\MockInterfaceImpl::class); |
114 | 118 | |
115 | - $root->invoke(static function (#[Proxy] MockInterface $mock, #[Proxy] EmptyInterface $empty) use ($var) { |
|
119 | + $root->invoke(static function (#[Proxy] MockInterface $mock, #[Proxy] EmptyInterface $empty) use ($var) |
|
120 | + { |
|
116 | 121 | /** @var MockInterfaceImpl $proxy */ |
117 | 122 | $proxy = $$var; |
118 | 123 | $str = 'bar'; |
@@ -134,7 +139,8 @@ discard block |
||
134 | 139 | $root->bindSingleton(MockInterface::class, Stub\MockInterfaceImpl::class); |
135 | 140 | $root->bindSingleton(EmptyInterface::class, Stub\MockInterfaceImpl::class); |
136 | 141 | |
137 | - $root->invoke(static function (#[Proxy] MockInterface $mock, #[Proxy] EmptyInterface $empty) use ($var) { |
|
142 | + $root->invoke(static function (#[Proxy] MockInterface $mock, #[Proxy] EmptyInterface $empty) use ($var) |
|
143 | + { |
|
138 | 144 | /** @var MockInterfaceImpl $proxy */ |
139 | 145 | $proxy = $$var; |
140 | 146 | |
@@ -159,7 +165,8 @@ discard block |
||
159 | 165 | $root->bindSingleton(MockInterface::class, Stub\MockInterfaceImpl::class); |
160 | 166 | $root->bindSingleton(EmptyInterface::class, Stub\MockInterfaceImpl::class); |
161 | 167 | |
162 | - $root->invoke(static function (#[Proxy] MockInterface $mock, #[Proxy] EmptyInterface $empty) use ($var) { |
|
168 | + $root->invoke(static function (#[Proxy] MockInterface $mock, #[Proxy] EmptyInterface $empty) use ($var) |
|
169 | + { |
|
163 | 170 | /** @var MockInterfaceImpl $proxy */ |
164 | 171 | $proxy = $$var; |
165 | 172 | $str1 = 'bar'; |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | self::expectExceptionMessageMatches('/Call to undefined method/i'); |
51 | 51 | |
52 | - $root->invoke(static function (#[Proxy] EmptyInterface $proxy) { |
|
52 | + $root->invoke(static function (#[Proxy] EmptyInterface $proxy){ |
|
53 | 53 | $proxy->bar(name: 'foo'); // Possible to run |
54 | 54 | }); |
55 | 55 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | $proxy = $$var; |
94 | 94 | self::assertSame(['foo', 'bar', 'baz', 69], $proxy->extraVariadic('foo', 'bar', 'baz', 69)); |
95 | 95 | self::assertSame( |
96 | - ['foo' => 'foo','zap' => 'bar', 'gas' => 69], |
|
96 | + ['foo' => 'foo', 'zap' => 'bar', 'gas' => 69], |
|
97 | 97 | $proxy->extraVariadic(foo: 'foo', zap: 'bar', gas: 69), |
98 | 98 | ); |
99 | 99 | }); |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | $root->bindSingleton(MockInterface::class, Stub\MockInterfaceImpl::class); |
185 | 185 | $root->bindSingleton(EmptyInterface::class, Stub\MockInterfaceImpl::class); |
186 | 186 | |
187 | - $mock = $root->invoke(static fn(#[Proxy] MockInterface|EmptyInterface $mock) => $mock); |
|
187 | + $mock = $root->invoke(static fn(#[Proxy] MockInterface | EmptyInterface $mock) => $mock); |
|
188 | 188 | |
189 | 189 | self::assertInstanceOf(MockInterfaceImpl::class, $mock); |
190 | 190 | } |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | ): array { |
54 | 54 | $state = new ResolvingState($reflection, $parameters); |
55 | 55 | |
56 | - foreach ($reflection->getParameters() as $parameter) { |
|
56 | + foreach ($reflection->getParameters() as $parameter){ |
|
57 | 57 | $this->resolveParameter($parameter, $state, $validate) |
58 | 58 | or |
59 | 59 | throw new ArgumentResolvingException($reflection, $parameter->getName()); |
@@ -67,47 +67,47 @@ discard block |
||
67 | 67 | $positional = true; |
68 | 68 | $variadic = false; |
69 | 69 | $parameters = $reflection->getParameters(); |
70 | - if (\count($parameters) === 0) { |
|
70 | + if (\count($parameters) === 0){ |
|
71 | 71 | return; |
72 | 72 | } |
73 | 73 | |
74 | 74 | $parameter = null; |
75 | - while (\count($parameters) > 0 || \count($arguments) > 0) { |
|
75 | + while (\count($parameters) > 0 || \count($arguments) > 0){ |
|
76 | 76 | // get related argument value |
77 | 77 | $key = \key($arguments); |
78 | 78 | |
79 | 79 | // For a variadic parameter it's no sense - named or positional argument will be sent |
80 | 80 | // But you can't send positional argument after named in any case |
81 | - if (\is_int($key) && !$positional) { |
|
81 | + if (\is_int($key) && !$positional){ |
|
82 | 82 | throw new PositionalArgumentException($reflection, $key); |
83 | 83 | } |
84 | 84 | |
85 | 85 | $positional = $positional && \is_int($key); |
86 | 86 | |
87 | - if (!$variadic) { |
|
87 | + if (!$variadic){ |
|
88 | 88 | $parameter = \array_shift($parameters); |
89 | 89 | $variadic = $parameter?->isVariadic() ?? false; |
90 | 90 | } |
91 | 91 | |
92 | - if ($parameter === null) { |
|
92 | + if ($parameter === null){ |
|
93 | 93 | throw new UnknownParameterException($reflection, $key); |
94 | 94 | } |
95 | 95 | $name = $parameter->getName(); |
96 | 96 | |
97 | - if (($positional || $variadic) && $key !== null) { |
|
97 | + if (($positional || $variadic) && $key !== null){ |
|
98 | 98 | /** @psalm-suppress ReferenceReusedFromConfusingScope */ |
99 | 99 | $value = \array_shift($arguments); |
100 | - } elseif ($key === null || !\array_key_exists($name, $arguments)) { |
|
101 | - if ($parameter->isOptional()) { |
|
100 | + } elseif ($key === null || !\array_key_exists($name, $arguments)){ |
|
101 | + if ($parameter->isOptional()){ |
|
102 | 102 | continue; |
103 | 103 | } |
104 | 104 | throw new MissingRequiredArgumentException($reflection, $name); |
105 | - } else { |
|
105 | + }else{ |
|
106 | 106 | $value = &$arguments[$name]; |
107 | 107 | unset($arguments[$name]); |
108 | 108 | } |
109 | 109 | |
110 | - if (!$this->validateValueToParameter($parameter, $value)) { |
|
110 | + if (!$this->validateValueToParameter($parameter, $value)){ |
|
111 | 111 | throw new InvalidArgumentException($reflection, $name); |
112 | 112 | } |
113 | 113 | } |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | |
116 | 116 | private function validateValueToParameter(ReflectionParameter $parameter, mixed $value): bool |
117 | 117 | { |
118 | - if (!$parameter->hasType() || ($parameter->allowsNull() && $value === null)) { |
|
118 | + if (!$parameter->hasType() || ($parameter->allowsNull() && $value === null)){ |
|
119 | 119 | return true; |
120 | 120 | } |
121 | 121 | $type = $parameter->getType(); |
@@ -126,17 +126,17 @@ discard block |
||
126 | 126 | $type instanceof ReflectionIntersectionType => [false, $type->getTypes()], |
127 | 127 | }; |
128 | 128 | |
129 | - foreach ($types as $t) { |
|
129 | + foreach ($types as $t){ |
|
130 | 130 | \assert($t instanceof ReflectionNamedType); |
131 | - if (!$this->validateValueNamedType($t, $value)) { |
|
131 | + if (!$this->validateValueNamedType($t, $value)){ |
|
132 | 132 | // If it is TypeIntersection |
133 | - if ($or) { |
|
133 | + if ($or){ |
|
134 | 134 | continue; |
135 | 135 | } |
136 | 136 | return false; |
137 | 137 | } |
138 | 138 | // If it is not type intersection then we can skip that value after first successful check |
139 | - if ($or) { |
|
139 | + if ($or){ |
|
140 | 140 | return true; |
141 | 141 | } |
142 | 142 | } |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | { |
152 | 152 | $name = $type->getName(); |
153 | 153 | |
154 | - if ($type->isBuiltin()) { |
|
154 | + if ($type->isBuiltin()){ |
|
155 | 155 | return match ($name) { |
156 | 156 | 'mixed' => true, |
157 | 157 | 'string' => \is_string($value), |
@@ -184,13 +184,13 @@ discard block |
||
184 | 184 | |
185 | 185 | // Try to resolve parameter by name |
186 | 186 | $res = $state->resolveParameterByNameOrPosition($param, $isVariadic); |
187 | - if ($res !== [] || $isVariadic) { |
|
187 | + if ($res !== [] || $isVariadic){ |
|
188 | 188 | // validate |
189 | - if ($isVariadic) { |
|
190 | - foreach ($res as $k => &$v) { |
|
191 | - $this->processArgument($state, $v, validateWith: $validate ? $param : null, key: $k); |
|
189 | + if ($isVariadic){ |
|
190 | + foreach ($res as $k => &$v){ |
|
191 | + $this->processArgument($state, $v, validateWith: $validate ? $param : null, key : $k); |
|
192 | 192 | } |
193 | - } else { |
|
193 | + }else{ |
|
194 | 194 | $this->processArgument($state, $res[0], validateWith: $validate ? $param : null); |
195 | 195 | } |
196 | 196 | |
@@ -198,18 +198,18 @@ discard block |
||
198 | 198 | } |
199 | 199 | |
200 | 200 | $error = null; |
201 | - while ($hasType) { |
|
201 | + while ($hasType){ |
|
202 | 202 | /** @var ReflectionIntersectionType|ReflectionUnionType|ReflectionNamedType $refType */ |
203 | 203 | $refType = $param->getType(); |
204 | 204 | |
205 | - if ($refType::class === ReflectionNamedType::class) { |
|
206 | - if ($refType->isBuiltin()) { |
|
205 | + if ($refType::class === ReflectionNamedType::class){ |
|
206 | + if ($refType->isBuiltin()){ |
|
207 | 207 | break; |
208 | 208 | } |
209 | 209 | |
210 | 210 | if (\interface_exists($refType->getName()) && !empty( |
211 | 211 | $attrs = $param->getAttributes(ProxyAttribute::class) |
212 | - )) { |
|
212 | + )){ |
|
213 | 213 | $proxy = Proxy::create( |
214 | 214 | new \ReflectionClass($refType->getName()), |
215 | 215 | $param, |
@@ -219,23 +219,23 @@ discard block |
||
219 | 219 | return true; |
220 | 220 | } |
221 | 221 | |
222 | - try { |
|
223 | - if ($this->resolveObject($state, $refType, $param, $validate)) { |
|
222 | + try{ |
|
223 | + if ($this->resolveObject($state, $refType, $param, $validate)){ |
|
224 | 224 | return true; |
225 | 225 | } |
226 | - } catch (Throwable $e) { |
|
226 | + }catch (Throwable $e){ |
|
227 | 227 | $error = $e; |
228 | 228 | } |
229 | 229 | break; |
230 | 230 | } |
231 | 231 | |
232 | - if ($refType::class === ReflectionUnionType::class) { |
|
233 | - foreach ($refType->getTypes() as $namedType) { |
|
234 | - try { |
|
235 | - if (!$namedType->isBuiltin() && $this->resolveObject($state, $namedType, $param, $validate)) { |
|
232 | + if ($refType::class === ReflectionUnionType::class){ |
|
233 | + foreach ($refType->getTypes() as $namedType){ |
|
234 | + try{ |
|
235 | + if (!$namedType->isBuiltin() && $this->resolveObject($state, $namedType, $param, $validate)){ |
|
236 | 236 | return true; |
237 | 237 | } |
238 | - } catch (Throwable $e) { |
|
238 | + }catch (Throwable $e){ |
|
239 | 239 | $error = $e; |
240 | 240 | } |
241 | 241 | } |
@@ -245,19 +245,19 @@ discard block |
||
245 | 245 | throw new UnsupportedTypeException($param->getDeclaringFunction(), $param->getName()); |
246 | 246 | } |
247 | 247 | |
248 | - if ($param->isDefaultValueAvailable()) { |
|
248 | + if ($param->isDefaultValueAvailable()){ |
|
249 | 249 | $argument = $param->getDefaultValue(); |
250 | 250 | $this->processArgument($state, $argument); |
251 | 251 | return true; |
252 | 252 | } |
253 | 253 | |
254 | - if ($hasType && $param->allowsNull()) { |
|
254 | + if ($hasType && $param->allowsNull()){ |
|
255 | 255 | $argument = null; |
256 | 256 | $this->processArgument($state, $argument); |
257 | 257 | return true; |
258 | 258 | } |
259 | 259 | |
260 | - if ($error === null) { |
|
260 | + if ($error === null){ |
|
261 | 261 | return false; |
262 | 262 | } |
263 | 263 | |
@@ -295,15 +295,15 @@ discard block |
||
295 | 295 | ResolvingState $state, |
296 | 296 | mixed &$value, |
297 | 297 | ReflectionParameter $validateWith = null, |
298 | - int|string $key = null |
|
298 | + int | string $key = null |
|
299 | 299 | ): void { |
300 | 300 | // Resolve Autowire objects |
301 | - if ($value instanceof Autowire) { |
|
301 | + if ($value instanceof Autowire){ |
|
302 | 302 | $value = $value->resolve($this->factory); |
303 | 303 | } |
304 | 304 | |
305 | 305 | // Validation |
306 | - if ($validateWith !== null && !$this->validateValueToParameter($validateWith, $value)) { |
|
306 | + if ($validateWith !== null && !$this->validateValueToParameter($validateWith, $value)){ |
|
307 | 307 | throw new InvalidArgumentException( |
308 | 308 | $validateWith->getDeclaringFunction(), |
309 | 309 | $validateWith->getName() |
@@ -53,7 +53,8 @@ discard block |
||
53 | 53 | ): array { |
54 | 54 | $state = new ResolvingState($reflection, $parameters); |
55 | 55 | |
56 | - foreach ($reflection->getParameters() as $parameter) { |
|
56 | + foreach ($reflection->getParameters() as $parameter) |
|
57 | + { |
|
57 | 58 | $this->resolveParameter($parameter, $state, $validate) |
58 | 59 | or |
59 | 60 | throw new ArgumentResolvingException($reflection, $parameter->getName()); |
@@ -67,47 +68,59 @@ discard block |
||
67 | 68 | $positional = true; |
68 | 69 | $variadic = false; |
69 | 70 | $parameters = $reflection->getParameters(); |
70 | - if (\count($parameters) === 0) { |
|
71 | + if (\count($parameters) === 0) |
|
72 | + { |
|
71 | 73 | return; |
72 | 74 | } |
73 | 75 | |
74 | 76 | $parameter = null; |
75 | - while (\count($parameters) > 0 || \count($arguments) > 0) { |
|
77 | + while (\count($parameters) > 0 || \count($arguments) > 0) |
|
78 | + { |
|
76 | 79 | // get related argument value |
77 | 80 | $key = \key($arguments); |
78 | 81 | |
79 | 82 | // For a variadic parameter it's no sense - named or positional argument will be sent |
80 | 83 | // But you can't send positional argument after named in any case |
81 | - if (\is_int($key) && !$positional) { |
|
84 | + if (\is_int($key) && !$positional) |
|
85 | + { |
|
82 | 86 | throw new PositionalArgumentException($reflection, $key); |
83 | 87 | } |
84 | 88 | |
85 | 89 | $positional = $positional && \is_int($key); |
86 | 90 | |
87 | - if (!$variadic) { |
|
91 | + if (!$variadic) |
|
92 | + { |
|
88 | 93 | $parameter = \array_shift($parameters); |
89 | 94 | $variadic = $parameter?->isVariadic() ?? false; |
90 | 95 | } |
91 | 96 | |
92 | - if ($parameter === null) { |
|
97 | + if ($parameter === null) |
|
98 | + { |
|
93 | 99 | throw new UnknownParameterException($reflection, $key); |
94 | 100 | } |
95 | 101 | $name = $parameter->getName(); |
96 | 102 | |
97 | - if (($positional || $variadic) && $key !== null) { |
|
103 | + if (($positional || $variadic) && $key !== null) |
|
104 | + { |
|
98 | 105 | /** @psalm-suppress ReferenceReusedFromConfusingScope */ |
99 | 106 | $value = \array_shift($arguments); |
100 | - } elseif ($key === null || !\array_key_exists($name, $arguments)) { |
|
101 | - if ($parameter->isOptional()) { |
|
107 | + } |
|
108 | + elseif ($key === null || !\array_key_exists($name, $arguments)) |
|
109 | + { |
|
110 | + if ($parameter->isOptional()) |
|
111 | + { |
|
102 | 112 | continue; |
103 | 113 | } |
104 | 114 | throw new MissingRequiredArgumentException($reflection, $name); |
105 | - } else { |
|
115 | + } |
|
116 | + else |
|
117 | + { |
|
106 | 118 | $value = &$arguments[$name]; |
107 | 119 | unset($arguments[$name]); |
108 | 120 | } |
109 | 121 | |
110 | - if (!$this->validateValueToParameter($parameter, $value)) { |
|
122 | + if (!$this->validateValueToParameter($parameter, $value)) |
|
123 | + { |
|
111 | 124 | throw new InvalidArgumentException($reflection, $name); |
112 | 125 | } |
113 | 126 | } |
@@ -115,7 +128,8 @@ discard block |
||
115 | 128 | |
116 | 129 | private function validateValueToParameter(ReflectionParameter $parameter, mixed $value): bool |
117 | 130 | { |
118 | - if (!$parameter->hasType() || ($parameter->allowsNull() && $value === null)) { |
|
131 | + if (!$parameter->hasType() || ($parameter->allowsNull() && $value === null)) |
|
132 | + { |
|
119 | 133 | return true; |
120 | 134 | } |
121 | 135 | $type = $parameter->getType(); |
@@ -126,17 +140,21 @@ discard block |
||
126 | 140 | $type instanceof ReflectionIntersectionType => [false, $type->getTypes()], |
127 | 141 | }; |
128 | 142 | |
129 | - foreach ($types as $t) { |
|
143 | + foreach ($types as $t) |
|
144 | + { |
|
130 | 145 | \assert($t instanceof ReflectionNamedType); |
131 | - if (!$this->validateValueNamedType($t, $value)) { |
|
146 | + if (!$this->validateValueNamedType($t, $value)) |
|
147 | + { |
|
132 | 148 | // If it is TypeIntersection |
133 | - if ($or) { |
|
149 | + if ($or) |
|
150 | + { |
|
134 | 151 | continue; |
135 | 152 | } |
136 | 153 | return false; |
137 | 154 | } |
138 | 155 | // If it is not type intersection then we can skip that value after first successful check |
139 | - if ($or) { |
|
156 | + if ($or) |
|
157 | + { |
|
140 | 158 | return true; |
141 | 159 | } |
142 | 160 | } |
@@ -151,7 +169,8 @@ discard block |
||
151 | 169 | { |
152 | 170 | $name = $type->getName(); |
153 | 171 | |
154 | - if ($type->isBuiltin()) { |
|
172 | + if ($type->isBuiltin()) |
|
173 | + { |
|
155 | 174 | return match ($name) { |
156 | 175 | 'mixed' => true, |
157 | 176 | 'string' => \is_string($value), |
@@ -184,13 +203,18 @@ discard block |
||
184 | 203 | |
185 | 204 | // Try to resolve parameter by name |
186 | 205 | $res = $state->resolveParameterByNameOrPosition($param, $isVariadic); |
187 | - if ($res !== [] || $isVariadic) { |
|
206 | + if ($res !== [] || $isVariadic) |
|
207 | + { |
|
188 | 208 | // validate |
189 | - if ($isVariadic) { |
|
190 | - foreach ($res as $k => &$v) { |
|
209 | + if ($isVariadic) |
|
210 | + { |
|
211 | + foreach ($res as $k => &$v) |
|
212 | + { |
|
191 | 213 | $this->processArgument($state, $v, validateWith: $validate ? $param : null, key: $k); |
192 | 214 | } |
193 | - } else { |
|
215 | + } |
|
216 | + else |
|
217 | + { |
|
194 | 218 | $this->processArgument($state, $res[0], validateWith: $validate ? $param : null); |
195 | 219 | } |
196 | 220 | |
@@ -198,18 +222,22 @@ discard block |
||
198 | 222 | } |
199 | 223 | |
200 | 224 | $error = null; |
201 | - while ($hasType) { |
|
225 | + while ($hasType) |
|
226 | + { |
|
202 | 227 | /** @var ReflectionIntersectionType|ReflectionUnionType|ReflectionNamedType $refType */ |
203 | 228 | $refType = $param->getType(); |
204 | 229 | |
205 | - if ($refType::class === ReflectionNamedType::class) { |
|
206 | - if ($refType->isBuiltin()) { |
|
230 | + if ($refType::class === ReflectionNamedType::class) |
|
231 | + { |
|
232 | + if ($refType->isBuiltin()) |
|
233 | + { |
|
207 | 234 | break; |
208 | 235 | } |
209 | 236 | |
210 | 237 | if (\interface_exists($refType->getName()) && !empty( |
211 | 238 | $attrs = $param->getAttributes(ProxyAttribute::class) |
212 | - )) { |
|
239 | + )) |
|
240 | + { |
|
213 | 241 | $proxy = Proxy::create( |
214 | 242 | new \ReflectionClass($refType->getName()), |
215 | 243 | $param, |
@@ -219,23 +247,33 @@ discard block |
||
219 | 247 | return true; |
220 | 248 | } |
221 | 249 | |
222 | - try { |
|
223 | - if ($this->resolveObject($state, $refType, $param, $validate)) { |
|
250 | + try |
|
251 | + { |
|
252 | + if ($this->resolveObject($state, $refType, $param, $validate)) |
|
253 | + { |
|
224 | 254 | return true; |
225 | 255 | } |
226 | - } catch (Throwable $e) { |
|
256 | + } |
|
257 | + catch (Throwable $e) |
|
258 | + { |
|
227 | 259 | $error = $e; |
228 | 260 | } |
229 | 261 | break; |
230 | 262 | } |
231 | 263 | |
232 | - if ($refType::class === ReflectionUnionType::class) { |
|
233 | - foreach ($refType->getTypes() as $namedType) { |
|
234 | - try { |
|
235 | - if (!$namedType->isBuiltin() && $this->resolveObject($state, $namedType, $param, $validate)) { |
|
264 | + if ($refType::class === ReflectionUnionType::class) |
|
265 | + { |
|
266 | + foreach ($refType->getTypes() as $namedType) |
|
267 | + { |
|
268 | + try |
|
269 | + { |
|
270 | + if (!$namedType->isBuiltin() && $this->resolveObject($state, $namedType, $param, $validate)) |
|
271 | + { |
|
236 | 272 | return true; |
237 | 273 | } |
238 | - } catch (Throwable $e) { |
|
274 | + } |
|
275 | + catch (Throwable $e) |
|
276 | + { |
|
239 | 277 | $error = $e; |
240 | 278 | } |
241 | 279 | } |
@@ -245,19 +283,22 @@ discard block |
||
245 | 283 | throw new UnsupportedTypeException($param->getDeclaringFunction(), $param->getName()); |
246 | 284 | } |
247 | 285 | |
248 | - if ($param->isDefaultValueAvailable()) { |
|
286 | + if ($param->isDefaultValueAvailable()) |
|
287 | + { |
|
249 | 288 | $argument = $param->getDefaultValue(); |
250 | 289 | $this->processArgument($state, $argument); |
251 | 290 | return true; |
252 | 291 | } |
253 | 292 | |
254 | - if ($hasType && $param->allowsNull()) { |
|
293 | + if ($hasType && $param->allowsNull()) |
|
294 | + { |
|
255 | 295 | $argument = null; |
256 | 296 | $this->processArgument($state, $argument); |
257 | 297 | return true; |
258 | 298 | } |
259 | 299 | |
260 | - if ($error === null) { |
|
300 | + if ($error === null) |
|
301 | + { |
|
261 | 302 | return false; |
262 | 303 | } |
263 | 304 | |
@@ -298,12 +339,14 @@ discard block |
||
298 | 339 | int|string $key = null |
299 | 340 | ): void { |
300 | 341 | // Resolve Autowire objects |
301 | - if ($value instanceof Autowire) { |
|
342 | + if ($value instanceof Autowire) |
|
343 | + { |
|
302 | 344 | $value = $value->resolve($this->factory); |
303 | 345 | } |
304 | 346 | |
305 | 347 | // Validation |
306 | - if ($validateWith !== null && !$this->validateValueToParameter($validateWith, $value)) { |
|
348 | + if ($validateWith !== null && !$this->validateValueToParameter($validateWith, $value)) |
|
349 | + { |
|
307 | 350 | throw new InvalidArgumentException( |
308 | 351 | $validateWith->getDeclaringFunction(), |
309 | 352 | $validateWith->getName() |
@@ -27,24 +27,24 @@ discard block |
||
27 | 27 | MagicCallTrait::class, |
28 | 28 | ] : []; |
29 | 29 | |
30 | - if (\str_contains($className, '\\')) { |
|
30 | + if (\str_contains($className, '\\')){ |
|
31 | 31 | $classShortName = \substr($className, \strrpos($className, '\\') + 1); |
32 | - $classNamespaceStr = 'namespace ' . \substr($className, 0, \strrpos($className, '\\')) . ';'; |
|
33 | - } else { |
|
32 | + $classNamespaceStr = 'namespace '.\substr($className, 0, \strrpos($className, '\\')).';'; |
|
33 | + }else{ |
|
34 | 34 | $classShortName = $className; |
35 | 35 | $classNamespaceStr = ''; |
36 | 36 | } |
37 | 37 | |
38 | 38 | $interface = $type->getName(); |
39 | 39 | $classBody = []; |
40 | - foreach ($type->getMethods() as $method) { |
|
41 | - if ($method->isConstructor()) { |
|
40 | + foreach ($type->getMethods() as $method){ |
|
41 | + if ($method->isConstructor()){ |
|
42 | 42 | throw new \LogicException('Constructor is not allowed in a proxy.'); |
43 | 43 | } |
44 | 44 | |
45 | 45 | $hasRefs = false; |
46 | 46 | $return = $method->hasReturnType() && (string)$method->getReturnType() === 'void' ? '' : 'return '; |
47 | - $call = ($method->isStatic() ? '::' : '->') . $method->getName(); |
|
47 | + $call = ($method->isStatic() ? '::' : '->').$method->getName(); |
|
48 | 48 | $context = $method->isStatic() ? 'null' : '$this->__container_proxy_context'; |
49 | 49 | $containerStr = match (false) { |
50 | 50 | $attachContainer => 'null', |
@@ -64,12 +64,12 @@ discard block |
||
64 | 64 | PHP; |
65 | 65 | |
66 | 66 | $args = []; |
67 | - foreach ($method->getParameters() as $param) { |
|
67 | + foreach ($method->getParameters() as $param){ |
|
68 | 68 | $hasRefs = $hasRefs || $param->isPassedByReference(); |
69 | - $args[] = ($param->isVariadic() ? '...' : '') . '$' . $param->getName(); |
|
69 | + $args[] = ($param->isVariadic() ? '...' : '').'$'.$param->getName(); |
|
70 | 70 | } |
71 | 71 | |
72 | - if (!$hasRefs && !$method->isVariadic()) { |
|
72 | + if (!$hasRefs && !$method->isVariadic()){ |
|
73 | 73 | $classBody[] = self::renderMethod( |
74 | 74 | $method, |
75 | 75 | <<<PHP |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | |
82 | 82 | $argsStr = \implode(', ', $args); |
83 | 83 | |
84 | - if ($method->isVariadic()) { |
|
84 | + if ($method->isVariadic()){ |
|
85 | 85 | $classBody[] = self::renderMethod( |
86 | 86 | $method, |
87 | 87 | <<<PHP |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | |
104 | 104 | $traitsStr = $traits === [] ? '' : \implode( |
105 | 105 | "\n ", |
106 | - \array_map(fn (string $trait): string => 'use \\' . \ltrim($trait, '\\') . ';', $traits) |
|
106 | + \array_map(fn (string $trait) : string => 'use \\'.\ltrim($trait, '\\').';', $traits) |
|
107 | 107 | ); |
108 | 108 | return <<<PHP |
109 | 109 | $classNamespaceStr |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | $m->getName(), |
127 | 127 | \implode(', ', \array_map([self::class, 'renderParameter'], $m->getParameters())), |
128 | 128 | $m->hasReturnType() |
129 | - ? ': ' . self::renderParameterTypes($m->getReturnType(), $m->getDeclaringClass()) |
|
129 | + ? ': '.self::renderParameterTypes($m->getReturnType(), $m->getDeclaringClass()) |
|
130 | 130 | : '', |
131 | 131 | $body, |
132 | 132 | ); |
@@ -140,8 +140,8 @@ discard block |
||
140 | 140 | $param->hasType() ? self::renderParameterTypes($param->getType(), $param->getDeclaringClass()) : '', |
141 | 141 | $param->isPassedByReference() ? '&' : '', |
142 | 142 | $param->isVariadic() ? '...' : '', |
143 | - '$' . $param->getName(), |
|
144 | - $param->isOptional() && !$param->isVariadic() ? ' = ' . self::renderDefaultValue($param) : '', |
|
143 | + '$'.$param->getName(), |
|
144 | + $param->isOptional() && !$param->isVariadic() ? ' = '.self::renderDefaultValue($param) : '', |
|
145 | 145 | ), |
146 | 146 | ' ' |
147 | 147 | ); |
@@ -149,8 +149,8 @@ discard block |
||
149 | 149 | |
150 | 150 | public static function renderParameterTypes(\ReflectionType $types, \ReflectionClass $class): string |
151 | 151 | { |
152 | - if ($types instanceof \ReflectionNamedType) { |
|
153 | - return ($types->allowsNull() && $types->getName() !== 'mixed' ? '?' : '') . ($types->isBuiltin() |
|
152 | + if ($types instanceof \ReflectionNamedType){ |
|
153 | + return ($types->allowsNull() && $types->getName() !== 'mixed' ? '?' : '').($types->isBuiltin() |
|
154 | 154 | ? $types->getName() |
155 | 155 | : self::normalizeClassType($types, $class)); |
156 | 156 | } |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | }; |
163 | 163 | |
164 | 164 | $result = []; |
165 | - foreach ($types as $type) { |
|
165 | + foreach ($types as $type){ |
|
166 | 166 | $result[] = $type->isBuiltin() |
167 | 167 | ? $type->getName() |
168 | 168 | : self::normalizeClassType($type, $class); |
@@ -173,12 +173,12 @@ discard block |
||
173 | 173 | |
174 | 174 | public static function renderDefaultValue(\ReflectionParameter $param): string |
175 | 175 | { |
176 | - if ($param->isDefaultValueConstant()) { |
|
176 | + if ($param->isDefaultValueConstant()){ |
|
177 | 177 | $result = $param->getDefaultValueConstantName(); |
178 | 178 | |
179 | 179 | return \explode('::', $result)[0] === 'self' |
180 | 180 | ? $result |
181 | - : '\\' . $result; |
|
181 | + : '\\'.$result; |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | $cut = self::cutDefaultValue($param); |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | |
191 | 191 | public static function normalizeClassType(\ReflectionNamedType $type, \ReflectionClass $class): string |
192 | 192 | { |
193 | - return '\\' . ($type->getName() === 'self' ? $class->getName() : $type->getName()); |
|
193 | + return '\\'.($type->getName() === 'self' ? $class->getName() : $type->getName()); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | private static function cutDefaultValue(\ReflectionParameter $param): string |
@@ -27,18 +27,23 @@ discard block |
||
27 | 27 | MagicCallTrait::class, |
28 | 28 | ] : []; |
29 | 29 | |
30 | - if (\str_contains($className, '\\')) { |
|
30 | + if (\str_contains($className, '\\')) |
|
31 | + { |
|
31 | 32 | $classShortName = \substr($className, \strrpos($className, '\\') + 1); |
32 | 33 | $classNamespaceStr = 'namespace ' . \substr($className, 0, \strrpos($className, '\\')) . ';'; |
33 | - } else { |
|
34 | + } |
|
35 | + else |
|
36 | + { |
|
34 | 37 | $classShortName = $className; |
35 | 38 | $classNamespaceStr = ''; |
36 | 39 | } |
37 | 40 | |
38 | 41 | $interface = $type->getName(); |
39 | 42 | $classBody = []; |
40 | - foreach ($type->getMethods() as $method) { |
|
41 | - if ($method->isConstructor()) { |
|
43 | + foreach ($type->getMethods() as $method) |
|
44 | + { |
|
45 | + if ($method->isConstructor()) |
|
46 | + { |
|
42 | 47 | throw new \LogicException('Constructor is not allowed in a proxy.'); |
43 | 48 | } |
44 | 49 | |
@@ -64,12 +69,14 @@ discard block |
||
64 | 69 | PHP; |
65 | 70 | |
66 | 71 | $args = []; |
67 | - foreach ($method->getParameters() as $param) { |
|
72 | + foreach ($method->getParameters() as $param) |
|
73 | + { |
|
68 | 74 | $hasRefs = $hasRefs || $param->isPassedByReference(); |
69 | 75 | $args[] = ($param->isVariadic() ? '...' : '') . '$' . $param->getName(); |
70 | 76 | } |
71 | 77 | |
72 | - if (!$hasRefs && !$method->isVariadic()) { |
|
78 | + if (!$hasRefs && !$method->isVariadic()) |
|
79 | + { |
|
73 | 80 | $classBody[] = self::renderMethod( |
74 | 81 | $method, |
75 | 82 | <<<PHP |
@@ -81,7 +88,8 @@ discard block |
||
81 | 88 | |
82 | 89 | $argsStr = \implode(', ', $args); |
83 | 90 | |
84 | - if ($method->isVariadic()) { |
|
91 | + if ($method->isVariadic()) |
|
92 | + { |
|
85 | 93 | $classBody[] = self::renderMethod( |
86 | 94 | $method, |
87 | 95 | <<<PHP |
@@ -149,7 +157,8 @@ discard block |
||
149 | 157 | |
150 | 158 | public static function renderParameterTypes(\ReflectionType $types, \ReflectionClass $class): string |
151 | 159 | { |
152 | - if ($types instanceof \ReflectionNamedType) { |
|
160 | + if ($types instanceof \ReflectionNamedType) |
|
161 | + { |
|
153 | 162 | return ($types->allowsNull() && $types->getName() !== 'mixed' ? '?' : '') . ($types->isBuiltin() |
154 | 163 | ? $types->getName() |
155 | 164 | : self::normalizeClassType($types, $class)); |
@@ -162,7 +171,8 @@ discard block |
||
162 | 171 | }; |
163 | 172 | |
164 | 173 | $result = []; |
165 | - foreach ($types as $type) { |
|
174 | + foreach ($types as $type) |
|
175 | + { |
|
166 | 176 | $result[] = $type->isBuiltin() |
167 | 177 | ? $type->getName() |
168 | 178 | : self::normalizeClassType($type, $class); |
@@ -173,7 +183,8 @@ discard block |
||
173 | 183 | |
174 | 184 | public static function renderDefaultValue(\ReflectionParameter $param): string |
175 | 185 | { |
176 | - if ($param->isDefaultValueConstant()) { |
|
186 | + if ($param->isDefaultValueConstant()) |
|
187 | + { |
|
177 | 188 | $result = $param->getDefaultValueConstantName(); |
178 | 189 | |
179 | 190 | return \explode('::', $result)[0] === 'self' |