summaryrefslogtreecommitdiffstats
path: root/system/codeigniter/Base5.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/codeigniter/Base5.php')
-rw-r--r--system/codeigniter/Base5.php34
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();
}