for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TheAentMachine\Helper;
use Symfony\Component\Console\Helper\QuestionHelper;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
abstract class BaseQuestion
{
/** @var QuestionHelper */
protected $helper;
/** @var InputInterface */
protected $input;
/** @var OutputInterface */
protected $output;
/** @var string */
protected $question;
public function __construct(QuestionHelper $helper, InputInterface $input, OutputInterface $output, string $question)
$this->helper = $helper;
$this->input = $input;
$this->output = $output;
$this->question = $question;
}