Fixed some missing function imports

these weren't getting corrected since php-cs-fixer 3.0 due to a change in the default configuration for native_function_invocation. Since the builds are randomly choosing to use php-cs-fixer 2.19 at the moment, the consistency is a problem.
This commit is contained in:
Dylan K. Taylor
2021-08-19 15:40:43 +01:00
parent b4b3c21d30
commit a5b85e095a
2 changed files with 3 additions and 0 deletions

View File

@ -32,9 +32,11 @@ use function file_put_contents;
use function fwrite;
use function implode;
use function is_numeric;
use function ksort;
use function ob_get_clean;
use function ob_start;
use function parse_ini_file;
use function preg_match_all;
use function str_replace;
use function strtoupper;
use const INI_SCANNER_RAW;