Skip to content

Commit

Permalink
[adding zend library]
Browse files Browse the repository at this point in the history
  • Loading branch information
nibsirahsieu committed Jan 8, 2011
1 parent 945cd09 commit 5a2922f
Show file tree
Hide file tree
Showing 95 changed files with 24,823 additions and 0 deletions.
463 changes: 463 additions & 0 deletions vendor/Zend/Loader/Autoloader.php

Large diffs are not rendered by default.

34 changes: 34 additions & 0 deletions vendor/Zend/Loader/Autoloader/Interface.php
@@ -0,0 +1,34 @@
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Loader
* @subpackage Autoloader
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
* @version $Id: Interface.php 13809 2009-01-27 19:01:54Z matthew $
* @license http://framework.zend.com/license/new-bsd New BSD License
*/

/**
* Autoloader interface
*
* @package Zend_Loader
* @subpackage Autoloader
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
* @license New BSD {@link http://framework.zend.com/license/new-bsd}
*/
interface Zend_Loader_Autoloader_Interface
{
public function autoload($class);
}

0 comments on commit 5a2922f

Please sign in to comment.