Files
dredgy 37ff8e0a88
linter / quality (push) Canceled after 0s
tests / ci (8.3) (push) Canceled after 0s
tests / ci (8.4) (push) Canceled after 0s
tests / ci (8.5) (push) Canceled after 0s
Initial Commit
2026-08-28 23:53:45 +10:00

16 lines
471 B
PHP

<?php
namespace App\Console\Commands;
use Illuminate\Console\Attributes\Description;
use Illuminate\Console\Attributes\Signature;
#[Signature('direct:debug-playwright')]
#[Description('Command description')]
class DebugPlaywright extends RunsPlaywrightScript
{
protected $signature = 'direct:debug';
protected $description = 'Run the Playwright network/DOM debugging script against Instagram Direct inbox';
protected string $script = 'debugger.spec.js';
}