for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SixtyNine\Cloud\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;
class BuildFromUrlCommand extends BaseCloudCommand
{
protected function configure()
parent::configure();
$this
->setName('cloud:from-url')
->setDescription('Create a cloud from a URL')
->addArgument('url', InputArgument::REQUIRED, 'The URL for the words')
;
}
protected function execute(InputInterface $input, OutputInterface $output)
$helper = new CommandsHelper();
$helper->createCloud('from-url', $input);