
| Current Path : /var/www/html/12park/vendor/chi-teck/drupal-code-generator/src/Test/Functional/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/12park/vendor/chi-teck/drupal-code-generator/src/Test/Functional/QuestionHelper.php |
<?php
declare(strict_types=1);
// phpcs:disable
namespace DrupalCodeGenerator\Test\Functional;
use DrupalCodeGenerator\Helper\QuestionHelper as BaseHelper;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Question\Question;
/**
* Question helper without autocomplete.
*
* @todo Is it still needed?
*/
final class QuestionHelper extends BaseHelper {
/**
* {@inheritdoc}
*/
public function ask(InputInterface $input, OutputInterface $output, Question $question): mixed {
$answer = parent::ask($input, $output, $question);
// Write line after each input to make test output more readable.
$output->writeln('');
return $answer;
}
}