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:
Aleš Rebec 2017-04-14 22:26:50 +02:00 committed by Joe Watkins
parent 4ddb0630c2
commit f469edcf59
No known key found for this signature in database
GPG key ID: F9BA0ADA31CBD89E

View file

@ -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'?)