Commit 0ac508b3 authored by Graham Campbell's avatar Graham Campbell

Minor cs fixes

parent 98e948ca
......@@ -3,13 +3,13 @@
use ZipArchive;
use GuzzleHttp\Client;
use Symfony\Component\Process\Process;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class NewCommand extends \Symfony\Component\Console\Command\Command
class NewCommand extends Command
{
/**
* Configure the command options.
*
......@@ -18,8 +18,8 @@ class NewCommand extends \Symfony\Component\Console\Command\Command
protected function configure()
{
$this->setName('new')
->setDescription('Create a new Laravel application.')
->addArgument('name', InputArgument::REQUIRED);
->setDescription('Create a new Laravel application.')
->addArgument('name', InputArgument::REQUIRED);
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment