Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
716cf56cb2.url-de-test.ws
/
htdocs_old
/
vendor
/
jms
/
metadata
/
tests
/
/srv/data/web/vhosts/716cf56cb2.url-de-test.ws/htdocs_old/vendor/jms/metadata/tests/bootstrap.php
<?php /* * This file is part of the Metadata library. * * (C) 2011 Johannes M. Schmitt <schmittjoh@gmail.com> * */ spl_autoload_register(function($class) { if (0 === strpos($class, 'Metadata\Tests\\')) { $path = __DIR__.'/../tests/'.strtr($class, '\\', '/').'.php'; if (file_exists($path) && is_readable($path)) { require_once $path; return true; } } elseif (0 === strpos($class, 'Metadata\\')) { $path = __DIR__.'/../src/'.($class = strtr($class, '\\', '/')).'.php'; if (file_exists($path) && is_readable($path)) { require_once $path; return true; } } elseif (0 === strpos($class, 'Symfony\\')) { $path = __DIR__.'/../../symfony/src/'.strtr($class, '\\', '/').'.php'; if (file_exists($path) && is_readable($path)) { require_once $path; return true; } } }); @include __DIR__ . '/../vendor/autoload.php';