mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 00:07:22 +01:00
36 lines
867 B
PHP
36 lines
867 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Laravel;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Laravel\Dusk\Console\DuskCommand;
|
|
use Pest\Laravel\Commands\PestDatasetCommand;
|
|
use Pest\Laravel\Commands\PestDuskCommand;
|
|
use Pest\Laravel\Commands\PestInstallCommand;
|
|
use Pest\Laravel\Commands\PestTestCommand;
|
|
|
|
final class PestServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register artisan commands.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
if ($this->app->runningInConsole()) {
|
|
$this->commands([
|
|
PestInstallCommand::class,
|
|
PestTestCommand::class,
|
|
PestDatasetCommand::class,
|
|
]);
|
|
|
|
if (class_exists(DuskCommand::class)) {
|
|
$this->commands([
|
|
PestDuskCommand::class,
|
|
]);
|
|
}
|
|
}
|
|
}
|
|
}
|