/home/techb158/dev.balacoffee.com/vendor/phenx/php-svg-lib/src
Edit: /home/techb158/dev.balacoffee.com/vendor/phenx/php-svg-lib/src/autoload.php (483B)
* @license GNU LGPLv3+ http://www.gnu.org/copyleft/lesser.html
*/
spl_autoload_register(function($class) {
if (0 === strpos($class, "Svg")) {
$file = str_replace('\\', DIRECTORY_SEPARATOR, $class);
$file = realpath(__DIR__ . DIRECTORY_SEPARATOR . $file . '.php');
if (file_exists($file)) {
include_once $file;
}
}
});