mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Remove obsolete function names from CODING_STANDARDS file
Deprecated and removed function names used as examples in coding standards file. - Mcrypt is deprecated and will be removed in 7.2 - Mysql functions are deprecated in 5.4 and removed in 7.0. According to those changes, CODING_STANDARDS file should be updated.
This commit is contained in:
parent
4ddb0630c2
commit
f469edcf59
1 changed files with 4 additions and 4 deletions
|
@ -93,12 +93,12 @@ User Functions/Methods Naming Conventions
|
||||||
readability of the function name itself::
|
readability of the function name itself::
|
||||||
|
|
||||||
Good:
|
Good:
|
||||||
'mcrypt_enc_self_test'
|
'str_word_count'
|
||||||
'mysql_list_fields'
|
'array_key_exists'
|
||||||
|
|
||||||
Ok:
|
Ok:
|
||||||
'mcrypt_module_get_algo_supported_key_sizes'
|
'date_interval_create_from_date_string'
|
||||||
(could be 'mcrypt_mod_get_algo_sup_key_sizes'?)
|
(could be 'date_intvl_create_from_date_str'?)
|
||||||
'get_html_translation_table'
|
'get_html_translation_table'
|
||||||
(could be 'html_get_trans_table'?)
|
(could be 'html_get_trans_table'?)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue