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

ControllerRequest::getAnswers()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 1
b 0
f 0
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