PHPWord/vendor/sabberworm/php-css-parser/tests/bootstrap.php
2021-02-26 12:53:56 -07:00

10 lines
195 B
PHP

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