// in app/console/Kernel.php
use Kayschima\FootballStandingsTile\Commands\FetchFootballStandingsDataCommand;
use Kayschima\FootballStandingsTile\Commands\FetchFootballLiveResultsDataCommand;
protected function schedule(Schedule $schedule)
{
// ...
$schedule->command(FetchFootballStandingsDataCommand::class)->everyMinute();
$schedule->command(FetchFootballLiveResultsDataCommand::class)->everyMinute();
}