Files
w4rpservices/vendor/spatie/laravel-schedule-monitor/src/Commands/Tables/ScheduledTasksTable.php
2021-03-30 11:31:10 +00:00

18 lines
306 B
PHP

<?php
namespace Spatie\ScheduleMonitor\Commands\Tables;
use Illuminate\Console\Command;
abstract class ScheduledTasksTable
{
protected Command $command;
public function __construct(Command $command)
{
$this->command = $command;
}
abstract public function render(): void;
}