for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Algatux\InfluxDbBundle\Command;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
/**
* Base class for InfluxDbBundle commands.
*/
abstract class AbstractCommand extends ContainerAwareCommand
{
* @var SymfonyStyle
protected $io;
* {@inheritdoc}
protected function initialize(InputInterface $input, OutputInterface $output)
$this->io = new SymfonyStyle($input, $output);
}