diff --git a/src/NewCommand.php b/src/NewCommand.php index b74b378c..d5ed854d 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -2,17 +2,17 @@ namespace Laravel\Installer\Console; -use ZipArchive; -use RuntimeException; use GuzzleHttp\Client; -use Symfony\Component\Process\Process; -use Symfony\Component\Filesystem\Filesystem; +use RuntimeException; use Symfony\Component\Console\Command\Command; -use Symfony\Component\Console\Input\InputOption; 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\Filesystem\Exception\IOExceptionInterface; +use Symfony\Component\Filesystem\Filesystem; +use Symfony\Component\Process\Process; +use ZipArchive; class NewCommand extends Command {