diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-06-17 02:01:00 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-06-17 02:01:00 +0200 |
commit | d1cace76965f71107aca63df1057b98df8d3b85a (patch) | |
tree | 27c4d0e2c771a510fbc7388668d1dd76403da80a | |
parent | 0159ae7d492cccca7a30a2f5b5c2b107d399e7ea (diff) |
Add deprecated docblock tags for do_hash() and read_file()
-rw-r--r-- | system/helpers/file_helper.php | 1 | ||||
-rw-r--r-- | system/helpers/security_helper.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/system/helpers/file_helper.php b/system/helpers/file_helper.php index be616f62d..7270ee32c 100644 --- a/system/helpers/file_helper.php +++ b/system/helpers/file_helper.php @@ -47,6 +47,7 @@ if ( ! function_exists('read_file')) * 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 */ diff --git a/system/helpers/security_helper.php b/system/helpers/security_helper.php index 7fcb18437..7968f9e9f 100644 --- a/system/helpers/security_helper.php +++ b/system/helpers/security_helper.php @@ -80,6 +80,7 @@ if ( ! function_exists('do_hash')) * This function is DEPRECATED and should be removed in * CodeIgniter 3.1+. Use hash() instead. * + * @deprecated * @param string * @param string * @return string |