drupal-meetups-twitterbot/src/Command/FetchTweetsCommand.php

30 lines
827 B
PHP
Raw Normal View History

2019-01-10 13:00:09 +00:00
<?php
namespace App\Command;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
class FetchTweetsCommand extends Command
{
protected static $defaultName = 'app:fetch-tweets';
protected function configure()
{
$this
->setDescription('Add a short description for your command')
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$io = new SymfonyStyle($input, $output);
$io->success('You have a new command! Now make it your own! Pass --help to see your options.');
}
}