HEX
Server: nginx/1.30.4
System: Linux d-twindigital-web-1.host-ed.eu 4.18.0-553.141.2.el8_10.x86_64 #1 SMP Wed Jul 8 10:28:18 EDT 2026 x86_64
User: u_twindigital_html (1009)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: //usr/bin/phan_config.php
<?php
/* 
    Pfan Config voor het checken van php 7.0 compatibiliteit
    https://github.com/phan/phan/wiki
    Geplaatst door LinQhost
*/

return [
        'backward_compatibility_checks' => true,
        'ignore_undeclared_functions_with_known_signatures' => false,
        'whitelist_issue_types' => [
                'PhanCompatiblePHP7',  // This only checks for **syntax** where the parsing may have changed. This check is enabled by `backward_compatibility_checks`
                'PhanDeprecatedFunctionInternal',  // Warns about a small number of functions deprecated in 7.0 and later.
                'PhanUndeclaredFunction',  // Check for removed functions such as split() that were deprecated in php 5.x and removed in php 7.0.
        ],
    ];