13 lines
290 B
PHP
13 lines
290 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require_once dirname(__DIR__) . '/app/autoload.php';
|
|
|
|
use App\Controllers\PlanningController;
|
|
use App\Core\JsonResponse;
|
|
|
|
JsonResponse::bootstrap();
|
|
$pdo = require dirname(__DIR__) . '/app/bootstrap.php';
|
|
(new PlanningController($pdo))->updateAgentEntry();
|