Test Failed
Pull Request — master (#37)
by Divine Niiquaye
02:47
created

Resolver::resolve()   D

Complexity

Conditions 24
Paths 34

Size

Total Lines 48
Code Lines 31

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 24
eloc 31
c 1
b 0
f 0
nc 34
nop 2
dl 0
loc 48
rs 4.1666

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 Definitions\TaggedLocator) {
235
            $resolved = $this->resolve($callback->resolve($this->container));
236
        } elseif ($callback instanceof Builder\PhpLiteral) {
237
            $expression = $this->literalCache[\spl_object_id($callback)] ??= $callback->resolve($this)[0];
238
            $resolved = $expression instanceof Stmt\Expression ? $expression->expr : $expression;
239
        } elseif (\is_string($callback)) {
240
            if (\str_contains($callback, '%')) {
241
                $callback = $this->container->parameter($callback);
242
            }
243
244
            if (\class_exists($callback)) {
245
                return $this->resolveClass($callback, $args);
246
            }
247
248
            if (\is_callable($callback)) {
249
                $resolved = $this->resolveCallable($callback, $args);
250
            }
251
        } elseif (\is_callable($callback) || \is_array($callback)) {
252
            $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

252
            $resolved = $this->resolveCallable(/** @scrutinizer ignore-type */ $callback, $args);
Loading history...
253
        }
254
255
        return $resolved ?? (null === $this->builder ? $callback : $this->builder->val($callback));
256
    }
257
258
    /**
259
     * Resolves callables and array like callables.
260
     *
261
     * @param callable|array<int,mixed> $callback
262
     * @param array<int|string,mixed>   $arguments
263
     *
264
     * @throws \ReflectionException if $callback is not a real callable
265
     *
266
     * @return mixed
267
     */
268
    public function resolveCallable($callback, array $arguments = [])
269
    {
270
        if (\is_array($callback)) {
271
            if (2 === \count($callback, \COUNT_RECURSIVE)) {
272
                $callback[0] = $this->resolve($callback[0]);
273
274
                if ($callback[0] instanceof Expr\BinaryOp\Coalesce) {
275
                    $type = [$this->container->definition($callback[0]->left->dim->value)->getEntity(), $callback[1]];
276
                } elseif ($callback[0] instanceof Expr\New_) {
277
                    $type = [(string) $callback[0]->class, $callback[1]];
278
                }
279
280
                if (isset($type) || \is_callable($callback)) {
281
                    goto create_callable;
282
                }
283
            }
284
285
            $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

285
            $callback = $this->resolveArguments(/** @scrutinizer ignore-type */ $callback);
Loading history...
286
287
            return null === $this->builder ? $callback : $this->builder->val($callback);
288
        }
289
290
        create_callable:
291
        $args = $this->autowireArguments($ref = Callback::toReflection($type ?? $callback), $arguments);
292
293
        if ($ref instanceof \ReflectionFunction) {
294
            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

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

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