Test Failed
Pull Request — master (#58)
by Dmitriy
02:36
created

ControllerRequest   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
dl 0
loc 17
rs 10
c 1
b 0
f 0
wmc 3

3 Methods

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