<?php
declare(strict_types=1);
namespace Crons;
class Example extends AbstractCron
{
protected string $title = 'Образец, ничего не делает';
static array $help = [
'--debug' => 'Запустить с отладкой',
];
public function execute()
{
$this->log($this->debug ? 'Ничего c дебагом' : 'Ничего');
}
}