diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-12-17 14:34:52 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-12-17 14:34:52 +0100 |
commit | fc7024e0ecbbc5fd268888b57da96b5ba7a0150a (patch) | |
tree | 3956542f16e3573cac68fdebd7fe09e6f388bf8f /system/core/Output.php | |
parent | 6a53709e448bd6fd2603ede85ddd34b3388ec11f (diff) | |
parent | 4296a65693504736b5e65bee5b163fa08cacb563 (diff) |
Merge pull request #2077 from AndrewPodner/develop
update for Issue #2064 - take 2
Diffstat (limited to 'system/core/Output.php')
-rw-r--r-- | system/core/Output.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index 2e239c787..78eb8c654 100644 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -143,7 +143,7 @@ class CI_Output { * Sets the output string. * * @param string $output Output data - * @return object $this + * @return CI_Output */ public function set_output($output) { @@ -159,7 +159,7 @@ class CI_Output { * Appends data onto the output string. * * @param string $output Data to append - * @return object $this + * @return CI_Output */ public function append_output($output) { @@ -187,7 +187,7 @@ class CI_Output { * * @param string $header Header * @param bool $replace Whether to replace the old header value, if already set - * @return object $this + * @return CI_Output */ public function set_header($header, $replace = TRUE) { @@ -211,7 +211,7 @@ class CI_Output { * * @param string $mime_type Extension of the file we're outputting * @param string $charset Character set (default: NULL) - * @return object $this + * @return CI_Output */ public function set_content_type($mime_type, $charset = NULL) { @@ -308,7 +308,7 @@ class CI_Output { * * @param int $code Status code (default: 200) * @param string $text Optional message - * @return object $this + * @return CI_Output */ public function set_status_header($code = 200, $text = '') { @@ -322,7 +322,7 @@ class CI_Output { * Enable/disable Profiler * * @param bool $val TRUE to enable or FALSE to disable - * @return object $this + * @return CI_Output */ public function enable_profiler($val = TRUE) { @@ -339,7 +339,7 @@ class CI_Output { * Profiler section display. * * @param array $sections Profiler sections - * @return object $this + * @return CI_Output */ public function set_profiler_sections($sections) { @@ -363,7 +363,7 @@ class CI_Output { * Set Cache * * @param int $time Cache expiration time in seconds - * @return object $this + * @return CI_Output */ public function cache($time) { |