Add test comment to static and router files

This commit is contained in:
Ruben 2025-10-03 13:17:00 +02:00
parent 84e7a8e2a6
commit d198b3f5fe
2 changed files with 2 additions and 0 deletions

View file

@ -1,4 +1,5 @@
<?php <?php
//test
// Load configuration // Load configuration
$configFile = file_exists(__DIR__ . '/../custom/config.ini') $configFile = file_exists(__DIR__ . '/../custom/config.ini')
? __DIR__ . '/../custom/config.ini' ? __DIR__ . '/../custom/config.ini'

View file

@ -1,4 +1,5 @@
<?php <?php
// test
// Serve static files from /app directory // Serve static files from /app directory
$requestUri = $_SERVER['REQUEST_URI']; $requestUri = $_SERVER['REQUEST_URI'];
$file = preg_replace('#^/app/#', '', parse_url($requestUri, PHP_URL_PATH)); $file = preg_replace('#^/app/#', '', parse_url($requestUri, PHP_URL_PATH));