ESH/dompdf/lib/php-css-parser/tests/bootstrap.php

10 lines
196 B
PHP
Raw Normal View History

2024-10-23 18:28:06 +05:30
<?php
spl_autoload_register(function($class)
{
$file = __DIR__.'/../lib/'.strtr($class, '\\', '/').'.php';
if (file_exists($file)) {
require $file;
return true;
}
});