18 lines
306 B
PHP
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;
|
|
}
|