Passed
Push — master ( 7bd689...ed0e19 )
by butschster
16:50 queued 18s
created

Resolver::resolve()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 20
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 2.3755

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 9
c 1
b 0
f 0
dl 0
loc 20
ccs 6
cts 11
cp 0.5455
rs 9.9666
cc 2
nc 2
nop 3
crap 2.3755
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Spiral\Core\Internal\Proxy;
6
7
use Psr\Container\ContainerInterface;
8
use Spiral\Core\ContainerScope;
9
use Spiral\Core\Exception\Container\ContainerException;
10
11
/**
12
 * @internal
13
 */
14
final class Resolver
15
{
16 13
    public static function resolve(
17
        string $alias,
18
        \Stringable|string|null $context = null,
19
        ?ContainerInterface $c = null
20
    ): object {
21 13
        $c ??= ContainerScope::getContainer() ?? throw new ContainerException('Proxy is out of scope.');
22
23
        try {
24
            /** @psalm-suppress TooManyArguments */
25 11
            $result = $c->get($alias, $context) ?? throw new ContainerException(
0 ignored issues
show
Unused Code introduced by
The call to Psr\Container\ContainerInterface::get() has too many arguments starting with $context. ( Ignorable by Annotation )

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

25
            $result = $c->/** @scrutinizer ignore-call */ get($alias, $context) ?? throw new ContainerException(

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.

Loading history...
26 11
                'Resolved `null` from the container.',
27 11
            );
28
        } catch (\Throwable $e) {
29
            throw new ContainerException(
30
                \sprintf('Unable to resolve `%s` in a Proxy.', $alias),
31
                previous: $e,
32
            );
33
        }
34
35 11
        return $result;
36
    }
37
}
38