chartisan-port/example/public/index.php
2022-11-19 21:03:31 +03:00

19 lines
263 B
PHP

<?php
declare(strict_types = 1);
/**
* Register the auto loader.
*/
require __DIR__ . '/../vendor/autoload.php';
/**
* Get the application response.
*/
$response = require_once __DIR__ . '/../app.php';
/**
* Respond to the request.
*/
echo $response();