Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f469edc

Browse files
alesrebeckrakjoe
authored andcommittedJul 25, 2017
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.
1 parent 4ddb063 commit f469edc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎CODING_STANDARDS

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,12 @@ User Functions/Methods Naming Conventions
9393
readability of the function name itself::
9494

9595
Good:
96-
'mcrypt_enc_self_test'
97-
'mysql_list_fields'
96+
'str_word_count'
97+
'array_key_exists'
9898

9999
Ok:
100-
'mcrypt_module_get_algo_supported_key_sizes'
101-
(could be 'mcrypt_mod_get_algo_sup_key_sizes'?)
100+
'date_interval_create_from_date_string'
101+
(could be 'date_intvl_create_from_date_str'?)
102102
'get_html_translation_table'
103103
(could be 'html_get_trans_table'?)
104104

0 commit comments

Comments
 (0)
Please sign in to comment.