Passed
Pull Request — master (#58)
by Dmitriy
13:13 queued 10:22
created

ControllerRequest   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 15
ccs 0
cts 5
cp 0
rs 10
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
A getGenerator() 0 4 1
A getAnswers() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Yii\Gii\Request;
6
7
use Yiisoft\RequestModel\RequestModel;
8
use Yiisoft\Yii\Gii\Generator\Controller\ControllerGenerator;
9
use Yiisoft\Yii\Gii\GeneratorInterface;
10
use Yiisoft\Yii\Gii\GiiInterface;
11
12
final class ControllerRequest extends RequestModel
13
{
14
    public function __construct(private GiiInterface $gii)
15
    {
16
    }
17
18
    public function getGenerator(): GeneratorInterface
19
    {
20
        /** @var ControllerGenerator $generator */
21
        return $this->gii->getGenerator(ControllerGenerator::getId());
22
    }
23
24
    public function getAnswers(): ?array
25
    {
26
        return $this->getAttributeValue('body.answers');
27
    }
28
}
29