<?php
declare(strict_types=1);
namespace Crons;
class TestCron extends AbstractCron
{
protected string $title = 'Тестовый крон';
protected bool $allCompanies = false;
static array $help = [
'-h,--help' => 'Помощь',
'-d,--debug' => 'Режим отладки',
];
public function execute(): void
{
}
}