Skip to content

Commit

Permalink
Delete JobClearCommand and JobListCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
ewilan-riviere committed Jan 15, 2024
1 parent 5087c18 commit 3c42f0b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
use Illuminate\Support\Facades\DB;
use Kiwilan\Steward\Commands\Commandable;

class JobClearCommand extends Commandable
class JobsClearCommand extends Commandable
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'job:clear';
protected $signature = 'jobs:clear';

/**
* The console command description.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
use Illuminate\Support\Facades\DB;
use Kiwilan\Steward\Commands\Commandable;

class JobListCommand extends Commandable
class JobsListCommand extends Commandable
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'job:list
protected $signature = 'jobs:list
{--l|limit= : limit jobs output}
{--f|full : display full job informations}
{--count : count of jobs}';
Expand Down
4 changes: 2 additions & 2 deletions src/StewardServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ public function configurePackage(Package $package): void
\Kiwilan\Steward\Commands\TagCleanCommand::class,
\Kiwilan\Steward\Commands\Optimize\OptimizeFeshCommand::class,
\Kiwilan\Steward\Commands\ClearFreshCommand::class,
\Kiwilan\Steward\Commands\Jobs\JobListCommand::class,
\Kiwilan\Steward\Commands\Jobs\JobClearCommand::class,
\Kiwilan\Steward\Commands\Jobs\JobsListCommand::class,
\Kiwilan\Steward\Commands\Jobs\JobsClearCommand::class,
])
;
}
Expand Down

0 comments on commit 3c42f0b

Please sign in to comment.