Test Failed
Pull Request — master (#37)
by Divine Niiquaye
12:51
created

Resolver::autowireArguments()   C

Complexity

Conditions 13
Paths 17

Size

Total Lines 44
Code Lines 26

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 13
eloc 26
nc 17
nop 2
dl 0
loc 44
rs 6.6166
c 0
b 0
f 0

How to fix   Complexity   

Long Method

Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.

For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.

Commonly applied refactorings include:

1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of DivineNii opensource projects.
7
 *
8
 * PHP version 7.4 and above required
9
 *
10
 * @author    Divine Niiquaye Ibok <[email protected]>
11
 * @copyright 2021 DivineNii (https://divinenii.com/)
12
 * @license   https://opensource.org/licenses/BSD-3-Clause License
13
 *
14
 * For the full copyright and license information, please view the LICENSE
15
 * file that was distributed with this source code.
16
 */
17
18
namespace Rade\DI;
19
20
use Nette\Utils\{Callback, Reflection};
21
use PhpParser\BuilderFactory;
22
use PhpParser\Node\{Expr, Stmt, Scalar};
23
use Rade\DI\Exceptions\{ContainerResolutionException, NotFoundServiceException};
24
use Symfony\Contracts\Service\{ServiceProviderInterface, ServiceSubscriberInterface};
25
26
/**
27
 * Class Resolver.
28
 *
29
 * @author Divine Niiquaye Ibok <[email protected]>
30
 */
31
class Resolver
32
{
33
    private AbstractContainer $container;
34
35
    private ?BuilderFactory $builder;
36
37
    private bool $strict = true;
38
39
    /** @var array<string,\PhpParser\Node> */
40
    private array $literalCache = [];
41
42
    public function __construct(AbstractContainer $container, BuilderFactory $builder = null)
43
    {
44
        $this->builder = $builder;
45
        $this->container = $container;
46
    }
47
48
    /**
49
     * If true, exception will be thrown on resolvable services with are not typed.
50
     */
51
    public function setStrictAutowiring(bool $boolean = true): void
52
    {
53
        $this->strict = $boolean;
54
    }
55
56
    /**
57
     * The method name generated for a service definition.
58
     */
59
    public function createMethod(string $id): string
60
    {
61
        return 'get' . \str_replace(['.', '_', '\\'], '', \ucwords($id, '._'));
62
    }
63
64
    /**
65
     * @param mixed $definition
66
     */
67
    public static function autowireService($definition, bool $allTypes = false, AbstractContainer $container = null): array
68
    {
69
        $types = $autowired = [];
70
71
        if (\is_callable($definition)) {
72
            $definition = \Closure::fromCallable($definition);
73
        }
74
75
        if ($definition instanceof \Closure) {
76
            $definition = Callback::unwrap($definition);
77
            $types = self::getTypes(\is_array($definition) ? new \ReflectionMethod($definition[0], $definition[1]) : new \ReflectionFunction($definition));
0 ignored issues
show
introduced by
The condition is_array($definition) is always true.
Loading history...
78
        } elseif (\is_string($definition)) {
79
            if (!(\class_exists($definition) || \interface_exists($definition))) {
80
                return $allTypes ? ['string'] : [];
81
            }
82
83
            $types[] = $definition;
84
        } elseif (\is_array($definition)) {
85
            if (null !== $container && 2 === \count($definition, \COUNT_RECURSIVE)) {
86
                if ($definition[0] instanceof Definitions\Reference) {
87
                    $def = $container->definition((string) $definition[0]);
88
                } elseif ($definition[0] instanceof Expr\BinaryOp\Coalesce) {
89
                    $def = $container->definition($definition[0]->left->dim->value);
90
                }
91
92
                if (isset($def)) {
93
                    $types = self::getTypes(new \ReflectionMethod($def instanceof Definitions\DefinitionInterface ? $def->getEntity() : $def, $definition[1]));
94
95
                    goto resolve_types;
96
                }
97
            }
98
99
            return $allTypes ? ['array'] : [];
100
        }
101
102
        if (\is_callable($definition)) {
103
            $types = self::getTypes(Callback::toReflection($definition));
104
        } elseif (\is_string($definition)) {
105
            if (!(\class_exists($definition) || \interface_exists($definition))) {
106
                return $allTypes ? ['string'] : $types;
107
            }
108
109
            $types[] = $definition;
110
        } elseif (\is_object($definition)) {
111
            if ($definition instanceof \stdClass) {
112
                return $allTypes ? ['object'] : $types;
113
            }
114
115
            $types[] = \get_class($definition);
116
        } elseif (\is_array($definition)) {
117
            if (null !== $container && 2 === \count($definition, \COUNT_RECURSIVE)) {
118
                if ($definition[0] instanceof Definitions\Reference) {
119
                    $types = self::getTypes(new \ReflectionMethod($container->definition((string) $definition[0])->getEntity(), $definition[1]));
120
                } elseif ($definition[0] instanceof Expr\BinaryOp\Coalesce) {
121
                    $types = self::getTypes(new \ReflectionMethod($container->definition($definition[0]->left->dim->value)->getEntity(), $definition[1]));
122
                }
123
            } else {
124
                return $allTypes ? ['array'] : [];
125
            }
126
        }
127
128
        resolve_types:
129
        foreach (($types ?? []) as $type) {
130
            $autowired[] = $type;
131
132
            foreach (\class_implements($type) ?: [] as $interface) {
133
                $autowired[] = $interface;
134
            }
135
136
            foreach (\class_parents($type) ?: [] as $parent) {
137
                $autowired[] = $parent;
138
            }
139
        }
140
141
        return $autowired;
142
    }
143
144
    /**
145
     * Resolves arguments for callable.
146
     *
147
     * @param array<int|string,mixed> $args
148
     *
149
     * @return array<int,mixed>
150
     */
151
    public function autowireArguments(\ReflectionFunctionAbstract $function, array $args = []): array
152
    {
153
        $resolvedParameters = [];
154
        $nullValuesFound = 0;
155
        $args = $this->resolveArguments($args); // Resolves provided arguments.
156
157
        foreach ($function->getParameters() as $offset => $parameter) {
158
            $position = 0 === $nullValuesFound ? $offset : $parameter->name;
159
            $resolved = $args[$offset] ?? $args[$parameter->name] ?? null;
160
            $types = self::getTypes($parameter);
161
162
            if (\PHP_VERSION_ID >= 80100 && (\count($types) > 1 && \is_subclass_of($enumType = $types[0], \BackedEnum::class))) {
0 ignored issues
show
Bug introduced by
The type BackedEnum was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
163
                if (null === ($resolved = $resolved ?? $providedParameters[$enumType] ?? null)) {
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $providedParameters seems to never exist and therefore isset should always be false.
Loading history...
164
                    throw new ContainerResolutionException(\sprintf('Missing parameter %s.', Reflection::toString($parameter)));
165
                }
166
                $resolvedParameters[$position] = $enumType::from($resolved);
167
168
                continue;
169
            }
170
171
            if (null === ($resolved = $resolved ?? $this->autowireArgument($parameter, $types, $args))) {
172
                if ($parameter->isDefaultValueAvailable()) {
173
                    if (\PHP_MAJOR_VERSION < 8) {
174
                        $resolvedParameters[$position] = Reflection::getParameterDefaultValue($parameter);
175
                    } else {
176
                        ++$nullValuesFound;
177
                    }
178
                } elseif (!$parameter->isVariadic()) {
179
                    $resolvedParameters[$position] = self::getParameterDefaultValue($parameter, $types);
0 ignored issues
show
Bug introduced by
Are you sure the assignment to $resolvedParameters[$position] is correct as self::getParameterDefaultValue($parameter, $types) targeting Rade\DI\Resolver::getParameterDefaultValue() seems to always return null.

This check looks for function or method calls that always return null and whose return value is assigned to a variable.

class A
{
    function getObject()
    {
        return null;
    }

}

$a = new A();
$object = $a->getObject();

The method getObject() can return nothing but null, so it makes no sense to assign that value to a variable.

The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.

Loading history...
180
                }
181
182
                continue;
183
            }
184
185
            if ($parameter->isVariadic() && \is_array($resolved)) {
186
                $resolvedParameters = \array_merge($resolvedParameters, $resolved);
187
188
                continue;
189
            }
190
191
            $resolvedParameters[$position] = $resolved;
192
        }
193
194
        return $resolvedParameters;
195
    }
196
197
    /**
198
     * Resolve a service definition, class string, invocable object or callable
199
     * using autowiring.
200
     *
201
     * @param string|callable|object  $callback
202
     * @param array<int|string,mixed> $args
203
     *
204
     * @throws ContainerResolutionException|\ReflectionException if unresolvable
205
     *
206
     * @return mixed
207
     */
208
    public function resolve($callback, array $args = [])
209
    {
210
        if ($callback instanceof Definitions\Statement) {
211
            if (Services\ServiceLocator::class == ($value = $callback->getValue())) {
212
                $services = [];
213
214
                foreach (($callback->getArguments() ?: $args) as $name => $service) {
215
                    $services += $this->resolveServiceSubscriber($name, (string) $service);
216
                }
217
218
                $resolved = null === $this->builder ? new Services\ServiceLocator($services) : $this->builder->new('\\' . Services\ServiceLocator::class, [$services]);
219
            } else {
220
                $resolved = $this->resolve($value, $callback->getArguments() ?: $args);
221
222
                if ($callback->isClosureWrappable()) {
223
                    $resolved = null === $this->builder ? fn () => $resolved : new Expr\ArrowFunction(['expr' => $resolved]);
224
                }
225
            }
226
        } elseif ($callback instanceof Definitions\Reference) {
227
            $resolved = $this->resolveReference((string) $callback);
228
229
            if (\is_callable($resolved) || (\is_array($resolved) && 2 === \count($resolved, \COUNT_RECURSIVE))) {
230
                $resolved = $this->resolveCallable($resolved, $args);
231
            }
232
        } elseif ($callback instanceof Definitions\ValueDefinition) {
233
            $resolved = $callback->getEntity();
234
        } elseif ($callback instanceof Builder\PhpLiteral) {
235
            $expression = $this->literalCache[\spl_object_id($callback)] ??= $callback->resolve($this)[0];
236
            $resolved = $expression instanceof Stmt\Expression ? $expression->expr : $expression;
237
        } elseif (\is_string($callback)) {
238
            if (\str_contains($callback, '%')) {
239
                $callback = $this->container->parameter($callback);
240
            }
241
242
            if (\class_exists($callback)) {
243
                return $this->resolveClass($callback, $args);
244
            }
245
246
            if (\is_callable($callback)) {
247
                $resolved = $this->resolveCallable($callback, $args);
248
            }
249
        } elseif (\is_callable($callback) || \is_array($callback)) {
250
            $resolved = $this->resolveCallable($callback, $args);
0 ignored issues
show
Bug introduced by
It seems like $callback can also be of type object; however, parameter $callback of Rade\DI\Resolver::resolveCallable() does only seem to accept array<integer,mixed>|callable, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

250
            $resolved = $this->resolveCallable(/** @scrutinizer ignore-type */ $callback, $args);
Loading history...
251
        }
252
253
        return $resolved ?? (null === $this->builder ? $callback : $this->builder->val($callback));
254
    }
255
256
    /**
257
     * Resolves callables and array like callables.
258
     *
259
     * @param callable|array<int,mixed> $callback
260
     * @param array<int|string,mixed>   $arguments
261
     *
262
     * @throws \ReflectionException if $callback is not a real callable
263
     *
264
     * @return mixed
265
     */
266
    public function resolveCallable($callback, array $arguments = [])
267
    {
268
        if (\is_array($callback)) {
269
            if (2 === \count($callback, \COUNT_RECURSIVE)) {
270
                $callback[0] = $this->resolve($callback[0]);
271
272
                if ($callback[0] instanceof Expr\BinaryOp\Coalesce) {
273
                    $type = [$this->container->definition($callback[0]->left->dim->value)->getEntity(), $callback[1]];
274
                } elseif ($callback[0] instanceof Expr\New_) {
275
                    $type = [(string) $callback[0]->class, $callback[1]];
276
                }
277
278
                if (isset($type) || \is_callable($callback)) {
279
                    goto create_callable;
280
                }
281
            }
282
283
            $callback = $this->resolveArguments($callback);
0 ignored issues
show
Bug introduced by
It seems like $callback can also be of type callable; however, parameter $arguments of Rade\DI\Resolver::resolveArguments() does only seem to accept array, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

283
            $callback = $this->resolveArguments(/** @scrutinizer ignore-type */ $callback);
Loading history...
284
285
            return null === $this->builder ? $callback : $this->builder->val($callback);
286
        }
287
288
        create_callable:
289
        $args = $this->autowireArguments($ref = Callback::toReflection($type ?? $callback), $arguments);
290
291
        if ($ref instanceof \ReflectionFunction) {
292
            return null === $this->builder ? $ref->invokeArgs($args) : $this->builder->funcCall($callback, $args);
0 ignored issues
show
Bug introduced by
$callback of type array<integer,mixed>|callable is incompatible with the type PhpParser\Node\Expr|PhpParser\Node\Name|string expected by parameter $name of PhpParser\BuilderFactory::funcCall(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

292
            return null === $this->builder ? $ref->invokeArgs($args) : $this->builder->funcCall(/** @scrutinizer ignore-type */ $callback, $args);
Loading history...
293
        }
294
295
        if ($ref->isStatic()) {
296
            $className = \is_array($callback) ? $callback[0] : $ref->getDeclaringClass()->getName();
297
298
            return null === $this->builder ? $ref->invokeArgs(null, $args) : $this->builder->staticCall($className, $ref->getName(), $args);
299
        }
300
301
        return null === $this->builder ? $callback(...$args) : $this->builder->methodCall($callback[0], $ref->getName(), $args);
302
    }
303
304
    /**
305
     * @param array<int|string,mixed> $args
306
     *
307
     * @throws ContainerResolutionException|\ReflectionException if class string unresolvable
308
     */
309
    public function resolveClass(string $class, array $args = []): object
310
    {
311
        /** @var class-string $class */
312
        $reflection = new \ReflectionClass($class);
313
314
        if ($reflection->isAbstract() || !$reflection->isInstantiable()) {
315
            throw new ContainerResolutionException(\sprintf('Class %s is an abstract type or instantiable.', $class));
316
        }
317
318
        if (null === $constructor = $reflection->getConstructor()) {
319
            if (!empty($args)) {
320
                throw new ContainerResolutionException(\sprintf('Unable to pass arguments, class "%s" has no constructor.', $class));
321
            }
322
323
            $service = null === $this->builder ? $reflection->newInstanceWithoutConstructor() : $this->builder->new($class);
324
        } else {
325
            $args = $this->autowireArguments($constructor, $args);
326
            $service = null === $this->builder ? $reflection->newInstanceArgs($args) : $this->builder->new($class, $args);
327
        }
328
329
        if ($reflection->implementsInterface(Injector\InjectableInterface::class)) {
330
            return Injector\Injectable::getProperties($this, $service, $reflection);
331
        }
332
333
        return $service;
334
    }
335
336
    /**
337
     * @param array<int|string,mixed> $arguments
338
     *
339
     * @return array<int|string,mixed>
340
     */
341
    public function resolveArguments(array $arguments = []): array
342
    {
343
        foreach ($arguments as $key => $value) {
344
            if ($value instanceof \stdClass) {
345
                $resolved = null === $this->builder ? $value : new Expr\Cast\Object_($this->builder->val($this->resolveArguments((array) $value)));
346
            } elseif (\is_array($value)) {
347
                $resolved = $this->resolveArguments($value);
348
            } elseif (\is_int($value)) {
349
                $resolved = null === $this->builder ? $value : new Scalar\LNumber($value);
350
            } elseif (\is_float($value)) {
351
                $resolved = null === $this->builder ? (int) $value : new Scalar\DNumber($value);
352
            } elseif (\is_numeric($value)) {
353
                $resolved = null === $this->builder ? (int) $value : Scalar\LNumber::fromString($value);
354
            } elseif (\is_string($value)) {
355
                if (\str_contains($value, '%')) {
356
                    $value = $this->container->parameter($value);
357
                }
358
359
                $resolved = null === $this->builder ? $value : $this->builder->val($value);
360
            } else {
361
                $resolved = $this->resolve($value);
362
            }
363
364
            $arguments[$key] = $resolved;
365
        }
366
367
        return $arguments;
368
    }
369
370
    /**
371
     * Resolves service by type.
372
     *
373
     * @param string $id A class or an interface name
374
     *
375
     * @return mixed
376
     */
377
    public function get(string $id, bool $single = false)
378
    {
379
        if (\is_subclass_of($id, ServiceSubscriberInterface::class)) {
380
            static $services = [];
381
382
            foreach ($id::getSubscribedServices() as $name => $service) {
383
                $services += $this->resolveServiceSubscriber($name, $service);
384
            }
385
386
            if (null === $builder = $this->builder) {
387
                return new Services\ServiceLocator($services);
388
            }
389
390
            return $builder->new('\\' . Services\ServiceLocator::class, [$services]);
391
        }
392
393
        if (!$this->strict) {
394
            return $this->container->get($id, $single ? $this->container::EXCEPTION_ON_MULTIPLE_SERVICE : $this->container::IGNORE_MULTIPLE_SERVICE);
395
        }
396
397
        if ($this->container->typed($id)) {
398
            return $this->container->autowired($id, $single);
399
        }
400
401
        throw new NotFoundServiceException(\sprintf('Service of type "%s" not found. Check class name because it cannot be found.', $id));
402
    }
403
404
    /**
405
     * Gets the PHP's parser builder.
406
     */
407
    public function getBuilder(): ?BuilderFactory
408
    {
409
        return $this->builder;
410
    }
411
412
    /**
413
     * @return mixed
414
     */
415
    private function resolveReference(string $reference)
416
    {
417
        if ('?' === $reference[0]) {
418
            $invalidBehavior = $this->container::EXCEPTION_ON_MULTIPLE_SERVICE;
419
            $reference = \substr($reference, 1);
420
421
            if ($arrayLike = \str_ends_with('[]', $reference)) {
422
                $reference = \substr($reference, 0, -2);
423
                $invalidBehavior = $this->container::IGNORE_MULTIPLE_SERVICE;
424
            }
425
426
            if ($this->container->has($reference) || $this->container->typed($reference)) {
427
                return $this->container->get($reference, $invalidBehavior);
428
            }
429
430
            return $arrayLike ? [] : null;
431
        }
432
433
        if ('[]' === \substr($reference, -2)) {
434
            return $this->container->get(\substr($reference, 0, -2), $this->container::IGNORE_MULTIPLE_SERVICE);
435
        }
436
437
        return $this->container->get($reference);
438
    }
439
440
    /**
441
     * Resolves services for ServiceLocator.
442
     *
443
     * @param int|string $id
444
     *
445
     * @return (\Closure|array|mixed|null)[]
446
     */
447
    private function resolveServiceSubscriber($id, string $value): array
448
    {
449
        if ('?' === $value[0]) {
450
            $arrayLike = \str_ends_with($value = \substr($value, 1), '[]');
451
452
            if (\is_int($id)) {
453
                $id = $arrayLike ? \substr($value, 0, -2) : $value;
454
            }
455
456
            return ($this->container->has($id) || $this->container->typed($id)) ? $this->resolveServiceSubscriber($id, $value) : [$id => $arrayLike ? [] : null];
457
        }
458
459
        $service = function () use ($value) {
460
            if ('[]' === \substr($value, -2)) {
461
                $service = $this->container->get(\substr($value, 0, -2), $this->container::IGNORE_MULTIPLE_SERVICE);
462
463
                return \is_array($service) ? $service : [$service];
464
            }
465
466
            return $this->container->get($value);
467
        };
468
469
        if (null !== $this->builder) {
470
            if ($this->container->has($value)) {
471
                $returnType = $this->container->definition($value)->getTypes()[0] ?? (\class_exists($id) || \interface_exists($id) ? $id : null);
472
            } elseif ('[]' !== \substr($value, -2)) {
473
                $returnType = 'array';
474
            }
475
476
            $service = new Expr\ArrowFunction(['expr' => $this->builder->val($service()), 'returnType' => $returnType ?? null]);
477
        }
478
479
        return [\is_int($id) ? \rtrim($value, '[]') : $id => $service];
480
    }
481
482
    /**
483
     * Resolves missing argument using autowiring.
484
     *
485
     * @param array<int|string,mixed> $providedParameters
486
     * @param array<int,string>       $types
487
     *
488
     * @throws ContainerResolutionException
489
     *
490
     * @return mixed
491
     */
492
    private function autowireArgument(\ReflectionParameter $parameter, array $types, array $providedParameters)
493
    {
494
        foreach ($types as $typeName) {
495
            if (!Reflection::isBuiltinType($typeName)) {
496
                try {
497
                    return $providedParameters[$typeName] ?? $this->get($typeName, !$parameter->isVariadic());
498
                } catch (NotFoundServiceException $e) {
499
                    // Ignore this exception ...
500
                } catch (ContainerResolutionException $e) {
501
                    $errorException = new ContainerResolutionException(\sprintf("{$e->getMessage()} (needed by %s)", Reflection::toString($parameter)));
502
                }
503
504
                if (
505
                    ServiceProviderInterface::class === $typeName &&
506
                    null !== $class = $parameter->getDeclaringClass()
507
                ) {
508
                    if (!$class->implementsInterface(ServiceSubscriberInterface::class)) {
509
                        throw new ContainerResolutionException(\sprintf(
510
                            'Service of type %s needs parent class %s to implement %s.',
511
                            $typeName,
512
                            $class->getName(),
513
                            ServiceSubscriberInterface::class
514
                        ));
515
                    }
516
517
                    return $this->get($class->getName());
518
                }
519
            }
520
521
            if (\PHP_MAJOR_VERSION >= 8 && $attributes = $parameter->getAttributes()) {
522
                foreach ($attributes as $attribute) {
523
                    if (Attribute\Inject::class === $attribute->getName()) {
524
                        if (null === $attrName = $attribute->getArguments()[0] ?? null) {
525
                            throw new ContainerResolutionException(\sprintf('Using the Inject attribute on parameter %s requires a value to be set.', $parameter->getName()));
526
                        }
527
528
                        if ($arrayLike = \str_ends_with($attrName, '[]')) {
529
                            $attrName = \substr($attrName, 0, -2);
530
                        }
531
532
                        try {
533
                            return $this->get($attrName, !$arrayLike);
534
                        } catch (NotFoundServiceException $e) {
535
                            // Ignore this exception ...
536
                        }
537
                    }
538
                }
539
            }
540
541
            if (
542
                ($method = $parameter->getDeclaringFunction()) instanceof \ReflectionMethod
543
                && \preg_match('#@param[ \t]+([\w\\\\]+)(?:\[\])?[ \t]+\$' . $parameter->name . '#', (string) $method->getDocComment(), $m)
544
                && ($itemType = Reflection::expandClassName($m[1], $method->getDeclaringClass()))
545
                && (\class_exists($itemType) || \interface_exists($itemType))
546
            ) {
547
                try {
548
                    if (\in_array($typeName, ['array', 'iterable'], true)) {
549
                        return $this->get($itemType);
550
                    }
551
552
                    if ('object' === $typeName || \is_subclass_of($itemType, $typeName)) {
553
                        return $this->get($itemType, true);
554
                    }
555
                } catch (NotFoundServiceException $e) {
556
                    // Ignore this exception ...
557
                }
558
            }
559
560
            if (isset($errorException)) {
561
                throw $errorException;
562
            }
563
        }
564
565
        return null;
566
    }
567
568
    /**
569
     * Returns an associated type to the given parameter if available.
570
     *
571
     * @param \ReflectionParameter|\ReflectionFunctionAbstract $reflection
572
     *
573
     * @return array<int,string>
574
     */
575
    private static function getTypes(\Reflector $reflection): array
576
    {
577
        if ($reflection instanceof \ReflectionParameter) {
578
            $type = $reflection->getType();
579
        } elseif ($reflection instanceof \ReflectionFunctionAbstract) {
580
            $type = $reflection->getReturnType() ?? (PHP_VERSION_ID >= 80100 ? $reflection->getTentativeReturnType() : null);
0 ignored issues
show
Bug introduced by
The method getTentativeReturnType() does not exist on ReflectionFunctionAbstract. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

580
            $type = $reflection->getReturnType() ?? (PHP_VERSION_ID >= 80100 ? $reflection->/** @scrutinizer ignore-call */ getTentativeReturnType() : null);

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
581
        }
582
583
        if (!isset($type)) {
584
            return [];
585
        }
586
587
        $resolver = static function (\ReflectionNamedType $rName) use ($reflection): string {
588
            $function = $reflection instanceof \ReflectionParameter ? $reflection->getDeclaringFunction() : $reflection;
589
590
            if ($function instanceof \ReflectionMethod) {
591
                $lcName = \strtolower($rName->getName());
592
593
                if ('self' === $lcName || 'static' === $lcName) {
594
                    return $function->getDeclaringClass()->name;
595
                }
596
597
                if ('parent' === $lcName) {
598
                    return $function->getDeclaringClass()->getParentClass()->name;
599
                }
600
            }
601
602
            return $rName->getName();
603
        };
604
605
        if (!$type instanceof \ReflectionNamedType) {
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable $type does not seem to be defined for all execution paths leading up to this point.
Loading history...
606
            return \array_map($resolver, $type->getTypes());
607
        }
608
609
        return [$resolver($type)];
610
    }
611
612
    /**
613
     * Get the parameter's allowed null else error.
614
     *
615
     * @throws \ReflectionException|ContainerResolutionException
616
     *
617
     * @return null
618
     */
619
    private static function getParameterDefaultValue(\ReflectionParameter $parameter, array $types)
620
    {
621
        if ($parameter->isOptional() || $parameter->allowsNull()) {
622
            return null;
623
        }
624
625
        $errorDescription = 'Parameter ' . Reflection::toString($parameter);
626
627
        if ('' === ($typedHint = \implode('|', $types))) {
628
            $errorDescription .= ' has no type hint or default value.';
629
        } elseif (\str_contains($typedHint, '|')) {
630
            $errorDescription .= ' has multiple type-hints ("' . $typedHint . '").';
631
        } elseif (\class_exists($typedHint)) {
632
            $errorDescription .= ' has an unresolved class-based type-hint ("' . $typedHint . '").';
633
        } elseif (\interface_exists($typedHint)) {
634
            $errorDescription .= ' has an unresolved interface-based type-hint ("' . $typedHint . '").';
635
        } else {
636
            $errorDescription .= ' has a type-hint ("' . $typedHint  . '") that cannot be resolved, perhaps a you forgot to set it up?';
637
        }
638
639
        throw new ContainerResolutionException($errorDescription);
640
    }
641
}
642