Completed
Push — master ( 550a5f...93d693 )
by Derek Stephen
11:28
created

GenerateProxy   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 16
ccs 0
cts 9
cp 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A configure() 0 5 1
A execute() 0 4 1
1
<?php
2
namespace Del\Common\Command;
3
4
use Del\Common\ContainerService;
5
use Doctrine\ORM\Tools\Console\Command\GenerateProxiesCommand;
6
use Symfony\Component\Console\Input\InputInterface;
7
use Symfony\Component\Console\Output\OutputInterface;
8
use Symfony\Component\Console\Input\InputArgument;
9
use Symfony\Component\Console\Input\InputOption;
10
11
class GenerateProxy extends GenerateProxiesCommand
12
{
13
14
15
    protected function configure()
16
    {
17
        parent::configure();
18
        $this->setName('generate-proxies');
19
    }
20
21
22
    public function execute(InputInterface $input, OutputInterface $output)
23
    {
24
        parent::execute($input, $output);
25
    }
26
}
27