Preview: autoload.php
Size: 362 B
/home/nshryvcy/blissfulnepal.com/wp-content/plugins/tourmaster/include/authorize/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];
}
});
Directory Contents
Dirs: 2 × Files: 3