Skip to content

Commit

Permalink
feat: #13 rename check to code
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkcup committed Oct 31, 2021
1 parent 9946938 commit 11f3b22
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/LintCheckCommand.php → src/LintCodeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
use Illuminate\Console\Command;
use Illuminate\Support\Facades\File;

class LintCheckCommand extends Command
class LintCodeCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'lint:check
protected $signature = 'lint:code
{files*}
{--standard=phpcs.xml : coding standards}';

Expand All @@ -22,7 +22,7 @@ class LintCheckCommand extends Command
*
* @var string
*/
protected $description = 'Lint files';
protected $description = 'Lint code files';

/**
* Execute the console command.
Expand Down
2 changes: 1 addition & 1 deletion src/LintServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function boot()
{
if ($this->app->runningInConsole()) {
$this->commands([
LintCheckCommand::class,
LintCodeCommand::class,
LintFixCommand::class,
LintPublishCommand::class,
LintRouteCommand::class,
Expand Down

0 comments on commit 11f3b22

Please sign in to comment.