File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
use Illuminate \Console \Command ;
7
7
use Illuminate \Support \Facades \File ;
8
8
9
- class LintCheckCommand extends Command
9
+ class LintCodeCommand extends Command
10
10
{
11
11
/**
12
12
* The name and signature of the console command.
13
13
*
14
14
* @var string
15
15
*/
16
- protected $ signature = 'lint:check
16
+ protected $ signature = 'lint:code
17
17
{files*}
18
18
{--standard=phpcs.xml : coding standards} ' ;
19
19
@@ -22,7 +22,7 @@ class LintCheckCommand extends Command
22
22
*
23
23
* @var string
24
24
*/
25
- protected $ description = 'Lint files ' ;
25
+ protected $ description = 'Lint code files ' ;
26
26
27
27
/**
28
28
* Execute the console command.
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public function boot()
15
15
{
16
16
if ($ this ->app ->runningInConsole ()) {
17
17
$ this ->commands ([
18
- LintCheckCommand ::class,
18
+ LintCodeCommand ::class,
19
19
LintFixCommand::class,
20
20
LintPublishCommand::class,
21
21
LintRouteCommand::class,
You can’t perform that action at this time.
0 commit comments