Completed
Push — feature/php-7.1-partial ( 412847 )
by Tom
03:40
created

MakeGridCommand::execute()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 2
1
<?php
2
/**
3
 * Copyright © 2016 netz98 new media GmbH. All rights reserved.
4
 * See COPYING.txt for license details.
5
 */
6
7
namespace N98\Magento\Command\Developer\Console;
8
9
use Symfony\Component\Console\Input\InputInterface;
10
use Symfony\Component\Console\Output\OutputInterface;
11
12
class MakeGridCommand extends AbstractGeneratorCommand
13
{
14
    protected function configure()
15
    {
16
        $this
17
            ->setName('make:grid')
18
            ->setDescription('Creates a new adminhtml grid');
19
    }
20
21
    /**
22
     * @param InputInterface  $input
23
     * @param OutputInterface $output
24
     *
25
     * @return int|void
26
     */
27
    protected function execute(InputInterface $input, OutputInterface $output)
28
    {
29
        $output->writeln('currently not implemented');
30
    }
31
}
32