?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/caldera-forms/vendor/calderawp/caldera-containers/Tests/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/caldera-forms/vendor/calderawp/caldera-containers

?? Viewing: bootstrap.php

<?php
if (file_exists(dirname(__FILE__, 2) . '/vendor/autoload.php')) {


    function loader($class)
    {
        $file = __DIR__ . '/' .$class . '.php';
        if (file_exists($file)) {
            require $file;
        }

    }

    spl_autoload_register('loader');

    include_once dirname(__FILE__, 2) . '/vendor/autoload.php';
} else {
    throw  new Exception('No autoloader');
}



??

??