php spark make:command SendReport
class SendReport extends BaseCommand {
protected $name = "report:send";
protected $description = "Send daily reports";
public function run(array $params): void {
CLI::write("Sending reports...", "yellow");
// do work
CLI::write("Done!", "green");
}
}