Skip to content

Commit 2a784af

Browse files
committed
rename command
1 parent e9b1465 commit 2a784af

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/Commands/ProjectDashboardCommand.php renamed to src/Commands/UiCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Laravel\VaporCli\Manifest;
77
use Symfony\Component\Process\Process;
88

9-
class ProjectDashboardCommand extends Command
9+
class UiCommand extends Command
1010
{
1111
/**
1212
* Configure the command options.
@@ -16,7 +16,7 @@ class ProjectDashboardCommand extends Command
1616
protected function configure()
1717
{
1818
$this
19-
->setName('project:dashboard')
19+
->setName('ui')
2020
->setDescription("Open the current project in Vapor's dashboard");
2121
}
2222

vapor

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<?php
33

44
use Dotenv\Dotenv;
5-
use Laravel\VaporCli\Commands;
6-
use Illuminate\Container\Container;
7-
use Dotenv\Environment\DotenvFactory;
8-
use Symfony\Component\Console\Application;
95
use Dotenv\Environment\Adapter\EnvConstAdapter as V3EnvConstAdapter;
106
use Dotenv\Environment\Adapter\ServerConstAdapter as V3ServerConstAdapter;
7+
use Dotenv\Environment\DotenvFactory;
118
use Dotenv\Repository\Adapter\EnvConstAdapter as V4EnvConstAdapter;
129
use Dotenv\Repository\Adapter\ServerConstAdapter as V4ServerConstAdapter;
1310
use Dotenv\Repository\RepositoryBuilder;
11+
use Illuminate\Container\Container;
12+
use Laravel\VaporCli\Commands;
13+
use Symfony\Component\Console\Application;
1414

1515
/**
1616
* Require the autoloader.
@@ -132,7 +132,7 @@ $app->add(new Commands\BalancerDeleteCommand);
132132

133133
// Projects...
134134
$app->add(new Commands\InitCommand);
135-
$app->add(new Commands\ProjectDashboardCommand);
135+
$app->add(new Commands\UiCommand);
136136
$app->add(new Commands\ProjectDeleteCommand);
137137
$app->add(new Commands\ProjectDescribeCommand);
138138

0 commit comments

Comments
 (0)