PHP Classes

File: vendor/symfony/symfony/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php

Recommend this page to a friend!
  Classes of Murat Cileli   Papernic   vendor/symfony/symfony/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php   Download  
File: vendor/symfony/symfony/src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_7.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Papernic
Manage documents colaboratively
Author: By
Last change:
Date: 7 years ago
Size: 712 bytes
 

Contents

Class file image Download
<?php

use Symfony\Component\Console\Input\InputInterface;
use
Symfony\Component\Console\Output\OutputInterface;
use
Symfony\Component\Console\Tests\Style\SymfonyStyleWithForcedLineLength;

//Ensure questions do not output anything when input is non-interactive
return function (InputInterface $input, OutputInterface $output) {
   
$output = new SymfonyStyleWithForcedLineLength($input, $output);
   
$output->title('Title');
   
$output->askHidden('Hidden question');
   
$output->choice('Choice question with default', array('choice1', 'choice2'), 'choice1');
   
$output->confirm('Confirmation with yes default', true);
   
$output->text('Duis aute irure dolor in reprehenderit in voluptate velit esse');
};