![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/braintree/braintree_php/lib/ |
<?php // phpcs:disable Generic.Commenting PEAR.Commenting spl_autoload_register(function ($className) { if (strpos($className, 'Braintree') !== 0) { return; } $fileName = dirname(__DIR__) . '/lib/'; if ($lastNsPos = strripos($className, '\\')) { $namespace = substr($className, 0, $lastNsPos); $className = substr($className, $lastNsPos + 1); $fileName .= str_replace('\\', DIRECTORY_SEPARATOR, $namespace) . DIRECTORY_SEPARATOR; } $fileName .= str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php'; if (is_file($fileName)) { require_once $fileName; } }); // phpcs:enable Generic.Commenting PEAR.Commenting