for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Staudenmeir\DuskUpdater;
use Illuminate\Support\ServiceProvider;
class DuskServiceProvider extends ServiceProvider
{
/**
* Register any package services.
*
* @return void
*/
public function register()
if ($this->app->runningInConsole()) {
$this->commands([
UpdateCommand::class,
]);
}