mirror of
https://github.com/dunglas/frankenphp.git
synced 2025-12-24 13:38:11 +08:00
11 lines
229 B
PHP
11 lines
229 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/../_executor.php';
|
|
|
|
return function () {
|
|
$date = new DateTime('2024-01-01 12:00:00', new DateTimeZone('Europe/Vienna'));
|
|
frankenphp_dispatch_task($date);
|
|
|
|
echo "dispatched tasks\n";
|
|
};
|