diff options
author | admin <devnull@localhost> | 2006-10-21 21:44:22 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-10-21 21:44:22 +0200 |
commit | e334c472fb4be44feec3a73402fc4a2b062cbfc0 (patch) | |
tree | 553f17d67e7ef652016ec85b2a576bb2210f0ff8 /system/codeigniter/Base5.php | |
parent | bd6bee75dd26ade1c8d9cfd104bb913065797c59 (diff) |
Diffstat (limited to 'system/codeigniter/Base5.php')
-rw-r--r-- | system/codeigniter/Base5.php | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/system/codeigniter/Base5.php b/system/codeigniter/Base5.php index e37c257af..0d036fae2 100644 --- a/system/codeigniter/Base5.php +++ b/system/codeigniter/Base5.php @@ -7,22 +7,22 @@ * @package CodeIgniter * @author Rick Ellis * @copyright Copyright (c) 2006, pMachine, Inc. - * @license http://www.codeignitor.com/user_guide/license.html + * @license http://www.codeignitor.com/user_guide/license.html * @link http://www.codeigniter.com * @since Version 1.3 * @filesource */ - - + + // ------------------------------------------------------------------------ /** * CI_BASE - For PHP 5 - * + * * This file contains some code used only when Code Igniter is being * run under PHP 5. It allows us to manage the CI super object more * gracefully than what is possible with PHP 4. - * + * * @package CodeIgniter * @subpackage codeigniter * @category front-controller @@ -32,22 +32,22 @@ class CI_Base { - private static $instance; - - public function CI_Base() - { - self::$instance =& $this; - } - - public static function &get_instance() - { - return self::$instance; - } + private static $instance; + + public function CI_Base() + { + self::$instance =& $this; + } + + public static function &get_instance() + { + return self::$instance; + } } function &get_instance() { - return CI_Base::get_instance(); + return CI_Base::get_instance(); } |