Skip to content
This repository was archived by the owner on Sep 18, 2020. It is now read-only.

Commit 11e6ff5

Browse files
committed
wip
1 parent d75548f commit 11e6ff5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
use InvalidArgumentException;
66
use Illuminate\Console\Command;
77

8-
class PresetCommand extends Command
8+
class UiCommand extends Command
99
{
1010
/**
1111
* The console command signature.
1212
*
1313
* @var string
1414
*/
15-
protected $signature = 'ui:preset
15+
protected $signature = 'ui
1616
{ type : The preset type (bootstrap, vue, react) }
1717
{ --option=* : Pass an option to the preset command }';
1818

src/UiServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ protected function registerCommands()
4040

4141
$this->commands([
4242
AuthCommand::class,
43-
PresetCommand::class,
43+
UiCommand::class,
4444
]);
4545
}
4646

@@ -53,7 +53,7 @@ public function provides()
5353
{
5454
return [
5555
AuthCommand::class,
56-
PresetCommand::class,
56+
UiCommand::class,
5757
];
5858
}
5959
}

0 commit comments

Comments
 (0)