GenerateHydratorsDoctrineODMCommand   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 28
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 0
Metric Value
wmc 2
lcom 1
cbo 3
dl 28
loc 28
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A configure() 18 18 1
A execute() 6 6 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
/*
4
 * This file is part of the Doctrine MongoDBBundle
5
 *
6
 * The code was originally distributed inside the Symfony framework.
7
 *
8
 * (c) Fabien Potencier <[email protected]>
9
 * (c) Doctrine Project
10
 *
11
 * For the full copyright and license information, please view the LICENSE
12
 * file that was distributed with this source code.
13
 */
14
15
namespace Saxulum\DoctrineMongodbOdmCommands\Command;
16
17
use Doctrine\ODM\MongoDB\Tools\Console\Command\GenerateHydratorsCommand;
18
use Symfony\Component\Console\Input\InputInterface;
19
use Symfony\Component\Console\Input\InputOption;
20
use Symfony\Component\Console\Output\OutputInterface;
21
22
/**
23
 * Generate the Doctrine ORM document hydrators to your cache directory.
24
 *
25
 * @author Fabien Potencier <[email protected]>
26
 * @author Jonathan H. Wage <[email protected]>
27
 */
28 View Code Duplication
class GenerateHydratorsDoctrineODMCommand extends GenerateHydratorsCommand
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
29
{
30
    protected function configure()
31
    {
32
        parent::configure();
33
34
        $this
35
            ->setName('doctrine:mongodb:generate:hydrators')
36
            ->addOption('dm', null, InputOption::VALUE_OPTIONAL, 'The document manager to use for this command.')
37
            ->setHelp(<<<EOT
38
The <info>doctrine:mongodb:generate:hydrators</info> command generates hydrator classes for your documents:
39
40
  <info>./app/console doctrine:mongodb:generate:hydrators</info>
41
42
You can specify the document manager you want to generate the hydrators for:
43
44
  <info>./app/console doctrine:mongodb:generate:hydrators --dm=name</info>
45
EOT
46
            );
47
    }
48
49
    protected function execute(InputInterface $input, OutputInterface $output)
50
    {
51
        DoctrineCommandHelper::setApplicationDocumentManager($this->getApplication(), $input->getOption('dm'));
52
53
        return parent::execute($input, $output);
54
    }
55
}
56