Fix PHP 7.4 compatibility (#6038)

Some recent PRs have broken PHP 7.4 compatibility due to `mixed` typing.
This commit is contained in:
Alexandre Alapetite
2024-01-13 17:02:39 +01:00
committed by GitHub
parent 9c97d8ca72
commit 74ed1e6c57
6 changed files with 48 additions and 45 deletions

View File

@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);
error_reporting(E_ALL);
ini_set('display_errors', 1);
ini_set('display_errors', '1');
const COPY_LOG_TO_SYSLOG = false;