~ubuntu-branches/ubuntu/wily/symfony/wily

« back to all changes in this revision

Viewing changes to src/Symfony/Component/Console/Tests/Fixtures/Style/SymfonyStyle/command/command_0.php

  • Committer: Package Import Robot
  • Author(s): David Prévot, Fabien Potencier
  • Date: 2015-06-14 17:15:34 UTC
  • mfrom: (1.3.3)
  • Revision ID: package-import@ubuntu.com-20150614171534-h74z7c7x7hdhz3ra
Tags: 2.7.1+dfsg-1
[ Fabien Potencier ]
updated VERSION for 2.7.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
use Symfony\Component\Console\Input\InputInterface;
 
4
use Symfony\Component\Console\Output\OutputInterface;
 
5
use Symfony\Component\Console\Style\SymfonyStyle;
 
6
 
 
7
//Ensure has single blank line at start when using block element
 
8
return function (InputInterface $input, OutputInterface $output) {
 
9
    $output = new SymfonyStyle($input, $output);
 
10
    $output->caution('Lorem ipsum dolor sit amet');
 
11
};