Passed
Push — master ( 743cc2...6ffec3 )
by Oleg
02:50
created

Gets::getClassName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
ccs 2
cts 2
cp 1
crap 1
1
<?php
2
declare(strict_types=1);
3
4
namespace SlayerBirden\DFCodeGeneration\Generator\Controllers;
5
6
class Gets extends AbstractAction
7
{
8
    protected $template = 'Gets.php.twig';
9
10 1
    public function getClassName(): string
11
    {
12 1
        return $this->provider->getClassName('gets');
13
    }
14
}
15