diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-10-27 00:05:09 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-10-27 00:05:09 +0200 |
commit | 29d909d5d1a14efc2e316650946bf43ddf03f1fd (patch) | |
tree | 95dd5551798ba62ae8ba74c8942f9693b49274a9 /system/helpers/file_helper.php | |
parent | 582ebcb3b7eebd12605804577710cf73f0362001 (diff) |
[ci skip] Update docblocks for deprecated functions
Diffstat (limited to 'system/helpers/file_helper.php')
-rw-r--r-- | system/helpers/file_helper.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/system/helpers/file_helper.php b/system/helpers/file_helper.php index 441345b05..8f23a3d54 100644 --- a/system/helpers/file_helper.php +++ b/system/helpers/file_helper.php @@ -44,12 +44,10 @@ if ( ! function_exists('read_file')) * * Opens the file specfied in the path and returns it as a string. * - * This function is DEPRECATED and should be removed in - * CodeIgniter 3.1+. Use file_get_contents() instead. - * - * @deprecated - * @param string path to file - * @return string + * @todo Remove in version 3.1+. + * @deprecated 3.0.0 It is now just an alias for PHP's native file_get_contents(). + * @param string $file Path to file + * @return string File contents */ function read_file($file) { |