web/lib/Zend/Loader/StandardAutoloader.php
changeset 1230 68c69c656a2c
parent 808 6b6c2214f778
equal deleted inserted replaced
1229:5a6b6e770365 1230:68c69c656a2c
    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';
    27  * Allows autoloading both namespaced and vendor-prefixed classes. Class
    27  * Allows autoloading both namespaced and vendor-prefixed classes. Class
    28  * lookups are performed on the filesystem. If a class file for the referenced
    28  * lookups are performed on the filesystem. If a class file for the referenced
    29  * class is not found, a PHP warning will be raised by include().
    29  * class is not found, a PHP warning will be raised by include().
    30  *
    30  *
    31  * @package    Zend_Loader
    31  * @package    Zend_Loader
    32  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    32  * @copyright  Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
    33  * @license    New BSD {@link http://framework.zend.com/license/new-bsd}
    33  * @license    New BSD {@link http://framework.zend.com/license/new-bsd}
    34  */
    34  */
    35 class Zend_Loader_StandardAutoloader implements Zend_Loader_SplAutoloader
    35 class Zend_Loader_StandardAutoloader implements Zend_Loader_SplAutoloader
    36 {
    36 {
    37     const NS_SEPARATOR     = '\\';
    37     const NS_SEPARATOR     = '\\';