File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 6
6
use Laravel \VaporCli \Manifest ;
7
7
use Symfony \Component \Process \Process ;
8
8
9
- class ProjectDashboardCommand extends Command
9
+ class UiCommand extends Command
10
10
{
11
11
/**
12
12
* Configure the command options.
@@ -16,7 +16,7 @@ class ProjectDashboardCommand extends Command
16
16
protected function configure ()
17
17
{
18
18
$ this
19
- ->setName ('project:dashboard ' )
19
+ ->setName ('ui ' )
20
20
->setDescription ("Open the current project in Vapor's dashboard " );
21
21
}
22
22
Original file line number Diff line number Diff line change 2
2
<?php
3
3
4
4
use Dotenv \Dotenv ;
5
- use Laravel \VaporCli \Commands ;
6
- use Illuminate \Container \Container ;
7
- use Dotenv \Environment \DotenvFactory ;
8
- use Symfony \Component \Console \Application ;
9
5
use Dotenv \Environment \Adapter \EnvConstAdapter as V3EnvConstAdapter ;
10
6
use Dotenv \Environment \Adapter \ServerConstAdapter as V3ServerConstAdapter ;
7
+ use Dotenv \Environment \DotenvFactory ;
11
8
use Dotenv \Repository \Adapter \EnvConstAdapter as V4EnvConstAdapter ;
12
9
use Dotenv \Repository \Adapter \ServerConstAdapter as V4ServerConstAdapter ;
13
10
use Dotenv \Repository \RepositoryBuilder ;
11
+ use Illuminate \Container \Container ;
12
+ use Laravel \VaporCli \Commands ;
13
+ use Symfony \Component \Console \Application ;
14
14
15
15
/**
16
16
* Require the autoloader.
@@ -132,7 +132,7 @@ $app->add(new Commands\BalancerDeleteCommand);
132
132
133
133
// Projects...
134
134
$ app ->add (new Commands \InitCommand );
135
- $ app ->add (new Commands \ProjectDashboardCommand );
135
+ $ app ->add (new Commands \UiCommand );
136
136
$ app ->add (new Commands \ProjectDeleteCommand );
137
137
$ app ->add (new Commands \ProjectDescribeCommand );
138
138
You can’t perform that action at this time.
0 commit comments