diff options
author | Eric Roberts <eric@cryode.com> | 2013-01-18 01:30:25 +0100 |
---|---|---|
committer | Eric Roberts <eric@cryode.com> | 2013-01-18 01:30:25 +0100 |
commit | 3e6b58215a78f63f43a62c584a1386bda2a1f3e1 (patch) | |
tree | f0ee0816b7269ebfbfa4d1892dcb55f75d76b714 /system/core | |
parent | bd6faca03fc7934a0ad1cff8584bfb49d2a43d49 (diff) |
Return spacing on var definitions.
Signed-off-by: Eric Roberts <eric@cryode.com>
Diffstat (limited to 'system/core')
-rw-r--r-- | system/core/Output.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index 52a551858..e6c48b5dd 100644 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -58,21 +58,21 @@ class CI_Output { * * @var array */ - public $headers = array(); + public $headers = array(); /** * List of mime types * * @var array */ - public $mimes = array(); + public $mimes = array(); /** * Mime-type for the current page * * @var string */ - protected $mime_type = 'text/html'; + protected $mime_type = 'text/html'; /** * Enable Profiler flag @@ -86,14 +86,14 @@ class CI_Output { * * @var bool */ - protected $_zlib_oc = FALSE; + protected $_zlib_oc = FALSE; /** * List of profiler sections * * @var array */ - protected $_profiler_sections = array(); + protected $_profiler_sections = array(); /** * Parse markers flag @@ -102,7 +102,7 @@ class CI_Output { * * @var bool */ - public $parse_exec_vars = TRUE; + public $parse_exec_vars = TRUE; /** * Class constructor |