for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Commands\Valet;
use App\Commands\BaseCommand;
use App\Support\Valet\Valet;
class Off extends BaseCommand
{
/**
* The signature of the command.
*
* @var string
*/
protected $signature = 'valet:off';
* The description of the command.
protected $description = 'Let Porter know it is not running alongside Laravel Valet';
* Execute the console command.
* @return void
public function handle(): void
app(Valet::class)->turnOff();
}