for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright © 2016 netz98 new media GmbH. All rights reserved.
* See COPYING.txt for license details.
*/
namespace N98\Magento\Command\Developer\Console;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class MakeGridCommand extends AbstractGeneratorCommand
{
protected function configure()
$this
->setName('make:grid')
->setDescription('Creates a new adminhtml grid');
}
* @param InputInterface $input
* @param OutputInterface $output
*
* @return int|void
protected function execute(InputInterface $input, OutputInterface $output)
$output->writeln('currently not implemented');