fix: PHP syntax errors in upload files and composer config

- Fix PHP 8.x string interpolation syntax in upload log calls
- Fix const getenv() -> runtime variable in uploadSyrianDocs.php
- Add composer security advisory ignore for firebase/php-jwt
- Run composer update to sync lock file
This commit is contained in:
Hamza-Ayed
2026-06-17 08:41:16 +03:00
parent 2c56d2f41e
commit 264e005a7b
7 changed files with 152 additions and 70 deletions

View File

@@ -16,7 +16,7 @@ if (empty($rawDriverID)) {
$driverID = basename($rawDriverID);
if (isset($_FILES['image'])) {
uploadLog("$_FILES['image'] metadata", 'INFO', [
uploadLog('$_FILES[\'image\'] metadata', 'INFO', [
'name' => $_FILES['image']['name'] ?? 'unknown',
'type' => $_FILES['image']['type'] ?? 'unknown',
'size' => $_FILES['image']['size'] ?? 0,