WordPress / theme-check

Theme Check plugin
https://wordpress.org/plugins/theme-check/
341 stars 114 forks source link

Improve consistency and naming of variables #384

Open carolinan opened 3 years ago

carolinan commented 3 years ago

Throughout the checks, different variable names are used even though the purpose is the same. For example some checks use foreach ( $php_files as $php_key => $phpfile ) { while others use a clearer name: foreach ( $php_files as $file_path => $file_content ) {