First commit

This commit is contained in:
Theodotos Andreou 2018-01-14 13:10:16 +00:00
커밋 c6e2478c40
13918개의 변경된 파일2303184개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@ -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;
}
}