First commit
This commit is contained in:
커밋
c6e2478c40
13918개의 변경된 파일과 2303184개의 추가작업 그리고 0개의 파일을 삭제
26
vendor/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php
vendored
Normal file
26
vendor/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
class FooSubnamespaced2Command extends Command
|
||||
{
|
||||
public $input;
|
||||
public $output;
|
||||
|
||||
protected function configure()
|
||||
{
|
||||
$this
|
||||
->setName('foo:go:bret')
|
||||
->setDescription('The foo:bar:go command')
|
||||
->setAliases(array('foobargo'))
|
||||
;
|
||||
}
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output)
|
||||
{
|
||||
$this->input = $input;
|
||||
$this->output = $output;
|
||||
}
|
||||
}
|
||||
불러오는 중…
테이블 추가
Add a link
Reference in a new issue