
| Current Path : /var/www/html_old/abg/vendor/league/csv/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html_old/abg/vendor/league/csv/autoload.php |
<?php
require __DIR__.'/src/functions_include.php';
spl_autoload_register(function ($class) {
$prefix = 'League\Csv\\';
if (0 !== strpos($class, $prefix)) {
return;
}
$file = __DIR__.'/src/'.str_replace('\\', '/', substr($class, strlen($prefix))).'.php';
if (!is_readable($file)) {
return;
}
require $file;
});