ok
Direktori : /home2/selectio/www/billingsoftwarenew/core/vendor/authorizenet/authorizenet/ |
Current File : /home2/selectio/www/billingsoftwarenew/core/vendor/authorizenet/authorizenet/autoload.php |
<?php /** * Custom SPL autoloader for the AuthorizeNet SDK * * @package AuthorizeNet */ spl_autoload_register(function($className) { static $classMap; if (!isset($classMap)) { $classMap = require __DIR__ . DIRECTORY_SEPARATOR . 'classmap.php'; } if (isset($classMap[$className])) { include $classMap[$className]; } });