Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/../../../public_html/vendor/psr/log/.././../mews/./../authorizenet/authorizenet
الملفات الموجودة في هذا الـ Path:
.
..
.gitignore
.gitmodules
.scrutinizer.yml
.travis.yml
AnetApiSchema.xsd
CONTRIBUTING.md
LICENSE.txt
MIGRATING.md
README.md
autoload.php
classmap.php
composer.json
doc
lib
phpunit.xml.dist
resources
sample-code-php
scripts
test-sample-codes.sh
tests

مشاهدة ملف: 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];
    }
});