diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-04-23 17:58:16 +0200 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-04-23 17:58:16 +0200 |
commit | 48a7fbbeb53e82e9298036d40c42ec2564699ed0 (patch) | |
tree | 37d4695d18579ecae45b6c49c2719e87696bfc21 /system/core/Output.php | |
parent | c8a2a60c1075e5f725967962663127dad0f9e2e1 (diff) |
Use tabs to separate class properties
Diffstat (limited to 'system/core/Output.php')
-rwxr-xr-x | system/core/Output.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index 0683539c9..513c657a6 100755 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -50,49 +50,49 @@ class CI_Output { * * @var int */ - public $cache_expiration = 0; + public $cache_expiration = 0; /** * List of server headers * * @var array */ - public $headers = array(); + public $headers = array(); /** * List of mime types * * @var array */ - public $mime_types = array(); + public $mime_types = array(); /** * Determines wether profiler is enabled * * @var book */ - public $enable_profiler = FALSE; + public $enable_profiler = FALSE; /** * Determines if output compression is enabled * * @var bool */ - protected $_zlib_oc = FALSE; + protected $_zlib_oc = FALSE; /** * List of profiler sections * * @var array */ - protected $_profiler_sections = array(); + protected $_profiler_sections = array(); /** * Whether or not to parse variables like {elapsed_time} and {memory_usage} * * @var bool */ - public $parse_exec_vars = TRUE; + public $parse_exec_vars = TRUE; /** * Set up Output class |