File "conditional_function.php"

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

Download   Open   Edit   Advanced Editor   Back

<?php
declare(strict_types=1);

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

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

    }
}

function a() {

}