This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/fixtures/Symfony/Components/Console/Foo2Command.php

22 lines
496 B
PHP
Raw Normal View History

2010-01-04 14:42:28 +00:00
<?php
2010-01-09 11:57:15 +00:00
use Symfony\Components\Console\Command\Command;
use Symfony\Components\Console\Input\InputInterface;
use Symfony\Components\Console\Output\OutputInterface;
2010-01-04 14:42:28 +00:00
class Foo2Command extends Command
2010-01-04 14:42:28 +00:00
{
protected function configure()
{
$this
->setName('foo1:bar')
->setDescription('The foo1:bar command')
->setAliases(array('afoobar2'))
;
}
2010-01-04 14:42:28 +00:00
protected function execute(InputInterface $input, OutputInterface $output)
{
}
2010-01-04 14:42:28 +00:00
}