diff options
Diffstat (limited to 'vendor/gregwar/captcha/autoload.php')
-rw-r--r-- | vendor/gregwar/captcha/autoload.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/vendor/gregwar/captcha/autoload.php b/vendor/gregwar/captcha/autoload.php new file mode 100644 index 00000000..8b3fa392 --- /dev/null +++ b/vendor/gregwar/captcha/autoload.php @@ -0,0 +1,16 @@ +<?php + +/** +* Registers an autoload for all the classes in Gregwar\Captcha +*/ +spl_autoload_register(function ($className) { + $namespace = 'Gregwar\\Captcha'; + + if (strpos($className, $namespace) === 0) { + $className = str_replace($namespace, '', $className); + $fileName = __DIR__ . '/' . str_replace('\\', '/', $className) . '.php'; + if (file_exists($fileName)) { + require($fileName); + } + } +}); |