Skip to content

Commit 11f3b22

Browse files
committed
feat: #13 rename check to code
1 parent 9946938 commit 11f3b22

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/LintCheckCommand.php renamed to src/LintCodeCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
use Illuminate\Console\Command;
77
use Illuminate\Support\Facades\File;
88

9-
class LintCheckCommand extends Command
9+
class LintCodeCommand extends Command
1010
{
1111
/**
1212
* The name and signature of the console command.
1313
*
1414
* @var string
1515
*/
16-
protected $signature = 'lint:check
16+
protected $signature = 'lint:code
1717
{files*}
1818
{--standard=phpcs.xml : coding standards}';
1919

@@ -22,7 +22,7 @@ class LintCheckCommand extends Command
2222
*
2323
* @var string
2424
*/
25-
protected $description = 'Lint files';
25+
protected $description = 'Lint code files';
2626

2727
/**
2828
* Execute the console command.

src/LintServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function boot()
1515
{
1616
if ($this->app->runningInConsole()) {
1717
$this->commands([
18-
LintCheckCommand::class,
18+
LintCodeCommand::class,
1919
LintFixCommand::class,
2020
LintPublishCommand::class,
2121
LintRouteCommand::class,

0 commit comments

Comments
 (0)