X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fconsolidation%2Fannotated-command%2Ftests%2Fsrc%2FExampleAnnotatedCommand.php;fp=vendor%2Fconsolidation%2Fannotated-command%2Ftests%2Fsrc%2FExampleAnnotatedCommand.php;h=0000000000000000000000000000000000000000;hp=6b4c6c5fc8c5a07f9b7690180ba57ba1d767ba94;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hpb=74df008bdbb3a11eeea356744f39b802369bda3c diff --git a/vendor/consolidation/annotated-command/tests/src/ExampleAnnotatedCommand.php b/vendor/consolidation/annotated-command/tests/src/ExampleAnnotatedCommand.php deleted file mode 100644 index 6b4c6c5fc..000000000 --- a/vendor/consolidation/annotated-command/tests/src/ExampleAnnotatedCommand.php +++ /dev/null @@ -1,63 +0,0 @@ -getArgument('one'); - $two = $input->getArgument('two'); - $multiple = $input->getOption('multiple'); - $flip = $input->getOption('flip'); - - $result = $this->myCat($one, $two, $multiple, $flip); - - // We could also just use $output->writeln($result) here, - // but calling processResults enables the use of output - // formatters. Note also that if you use processResults, you - // should correctly inject the command processor into your - // annotated command via AnnotatedCommand::setCommandProcessor(). - return $this->processResults($input, $output, $result); - } -}