You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 ) {
The text was updated successfully, but these errors were encountered:
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 ) {
The text was updated successfully, but these errors were encountered: