File "conditional_function.php"

Full Path: /var/www/html/back/vendor/phpdocumentor/reflection/tests/integration/data/GlobalFiles/conditional_function.php
File size: 240 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare(strict_types=1);

if (!function_exists('h')) {
    function h() {

    }
} elseif(!function_exists('i')) {
    if (true) {
        function i()
        {
        }
    }
} else {
    function j() {

    }
}

function a() {

}