Passed
Pull Request — master (#203)
by Sergei
13:18 queued 10:44
created

RouteArgumentResolver::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 1
dl 0
loc 3
ccs 1
cts 1
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Router\HydratorAttribute;
6
7
use Yiisoft\Hydrator\Context;
8
use Yiisoft\Hydrator\ParameterAttributeInterface;
9
use Yiisoft\Hydrator\ParameterAttributeResolverInterface;
10
use Yiisoft\Hydrator\Result;
11
use Yiisoft\Hydrator\UnexpectedAttributeException;
12
use Yiisoft\Router\CurrentRoute;
13
14
final class RouteArgumentResolver implements ParameterAttributeResolverInterface
15
{
16 3
    public function __construct(
17
        private CurrentRoute $currentRoute,
18
    ) {
19 3
    }
20
21 3
    public function getParameterValue(ParameterAttributeInterface $attribute, Context $context): Result
22
    {
23 3
        if (!$attribute instanceof RouteArgument) {
24 1
            throw new UnexpectedAttributeException(RouteArgument::class, $attribute);
25
        }
26
27 2
        $arguments = $this->currentRoute->getArguments();
28
29 2
        $name = $attribute->getName() ?? $context->getParameter()->getName();
30
31 2
        if (array_key_exists($name, $arguments)) {
32 1
            return Result::success($arguments[$name]);
33
        }
34
35 1
        return Result::fail();
36
    }
37
}
38