Viewing file: autoload.php (1.11 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php // @codingStandardsIgnoreFile // @codeCoverageIgnoreStart // this is an autogenerated file - do not edit spl_autoload_register( function($class) { static $classes = null; if ($classes === null) { $classes = array( 'recaptcha\\recaptcha' => '/ReCaptcha.php', 'recaptcha\\requestmethod' => '/RequestMethod.php', 'recaptcha\\requestmethod\\curl' => '/RequestMethod/Curl.php', 'recaptcha\\requestmethod\\curlpost' => '/RequestMethod/CurlPost.php', 'recaptcha\\requestmethod\\post' => '/RequestMethod/Post.php', 'recaptcha\\requestmethod\\socket' => '/RequestMethod/Socket.php', 'recaptcha\\requestmethod\\socketpost' => '/RequestMethod/SocketPost.php', 'recaptcha\\requestparameters' => '/RequestParameters.php', 'recaptcha\\response' => '/Response.php' ); } $cn = strtolower($class); if (isset($classes[$cn])) { require __DIR__ . $classes[$cn]; } }, true, false ); // @codeCoverageIgnoreEnd
|