From 4dea5adc4a5ac42d7cf9313337f3a07fc21f93e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sylvain=20Ray=C3=A9?= Date: Sat, 31 Jan 2015 11:48:01 +0100 Subject: [PATCH] Add MIT License As provided by the original author of this class, please add the MIT license to prevent problem by using it. Here is the original link to the gist of the author: https://gist.github.com/jwage/221634 --- .../PSR0Autoloader/Model/SplAutoloader.php | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/app/code/community/Hackathon/PSR0Autoloader/Model/SplAutoloader.php b/app/code/community/Hackathon/PSR0Autoloader/Model/SplAutoloader.php index 5014ff4..f5c7148 100644 --- a/app/code/community/Hackathon/PSR0Autoloader/Model/SplAutoloader.php +++ b/app/code/community/Hackathon/PSR0Autoloader/Model/SplAutoloader.php @@ -1,4 +1,22 @@ . + */ + /** * SplClassLoader implementation that implements the technical interoperability * standards for PHP 5.3 namespaces and class names. @@ -9,7 +27,8 @@ * // Doctrine\Common namespace. * $classLoader = new SplClassLoader('Doctrine\Common', '/path/to/doctrine'); * $classLoader->register(); - * + * + * @license http://www.opensource.org/licenses/mit-license.html MIT License * @author Jonathan H. Wage * @author Roman S. Borschel * @author Matthew Weier O'Phinney