PHPWord/vendor/sabberworm/php-css-parser/tests/bootstrap.php

10 lines
195 B
PHP
Raw Normal View History

2021-02-26 19:53:56 +00:00
<?php
spl_autoload_register(function($class)
{
$file = __DIR__.'/../lib/'.strtr($class, '\\', '/').'.php';
if (file_exists($file)) {
require $file;
return true;
}
});