1 | <?php |
||
10 | class StatusesShowCommand extends BaseCommand |
||
11 | { |
||
12 | protected function configure() |
||
13 | { |
||
14 | parent::configure(); |
||
15 | |||
16 | $this |
||
17 | ->setName('statuses:show') |
||
18 | ->setDescription('Show one tweet (for debugging)') |
||
19 | ->addArgument('tweet_id', InputArgument::REQUIRED, 'Tweet ID'); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @param InputInterface $input |
||
24 | * @param OutputInterface $output |
||
25 | */ |
||
26 | protected function execute(InputInterface $input, OutputInterface $output) |
||
46 | } |
||
47 |