equal
deleted
inserted
replaced
12 * obtain it through the world-wide-web, please send an email |
12 * obtain it through the world-wide-web, please send an email |
13 * to license@zend.com so we can send you a copy immediately. |
13 * to license@zend.com so we can send you a copy immediately. |
14 * |
14 * |
15 * @category Zend |
15 * @category Zend |
16 * @package Zend_Loader |
16 * @package Zend_Loader |
17 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
17 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
18 * @license http://framework.zend.com/license/new-bsd New BSD License |
18 * @license http://framework.zend.com/license/new-bsd New BSD License |
19 */ |
19 */ |
20 |
20 |
21 // Grab SplAutoloader interface |
21 // Grab SplAutoloader interface |
22 require_once dirname(__FILE__) . '/SplAutoloader.php'; |
22 require_once dirname(__FILE__) . '/SplAutoloader.php'; |
25 * Class-map autoloader |
25 * Class-map autoloader |
26 * |
26 * |
27 * Utilizes class-map files to lookup classfile locations. |
27 * Utilizes class-map files to lookup classfile locations. |
28 * |
28 * |
29 * @package Zend_Loader |
29 * @package Zend_Loader |
30 * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) |
30 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com) |
31 * @license New BSD {@link http://framework.zend.com/license/new-bsd} |
31 * @license New BSD {@link http://framework.zend.com/license/new-bsd} |
32 */ |
32 */ |
33 class Zend_Loader_ClassMapAutoloader implements Zend_Loader_SplAutoloader |
33 class Zend_Loader_ClassMapAutoloader implements Zend_Loader_SplAutoloader |
34 { |
34 { |
35 /** |
35 /** |