GenerateProxy::configure()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 1
1
<?php
2
3
namespace Del\Common\Command;
4
5
use Del\Common\ContainerService;
6
use Doctrine\ORM\Tools\Console\Command\GenerateProxiesCommand;
7
use Symfony\Component\Console\Input\InputInterface;
8
use Symfony\Component\Console\Output\OutputInterface;
9
use Symfony\Component\Console\Input\InputArgument;
10
use Symfony\Component\Console\Input\InputOption;
11
12
class GenerateProxy extends GenerateProxiesCommand
13
{
14 1
    protected function configure(): void
15
    {
16 1
        parent::configure();
17 1
        $this->setName('generate-proxies');
18 1
    }
19
}
20