GenerateProxy   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 8
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A configure() 0 5 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