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...
13
{
14
15
const COMMAND = 'magium:configuration:list';
16
17
1
protected function configure()
18
{
19
$this
20
1
->setName(self::COMMAND)
21
1
->setDescription('List configuration settings')
22
1
->setHelp("This command lists all of the configuration setting values for the specified context, or 'default' if the context is not provided")
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.