• File: bootstrap.php
  • Full Path: /home/masbinta/public_html/core/vendor/sabberworm/php-css-parser/tests/bootstrap.php
  • File size: 195 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

spl_autoload_register(function($class)
{
    $file = __DIR__.'/../lib/'.strtr($class, '\\', '/').'.php';
    if (file_exists($file)) {
        require $file;
        return true;
    }
});