-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Closed
Labels
big picturePolicy or high level discussionPolicy or high level discussionenhancementAn enhancement or new featureAn enhancement or new feature
Description
Taking the following code as an example, the php variable is not detected as a variable when it resides as a function argument or inside any bracketed syntax:
$var_is_detected = ''; # < This is detected as a variable
function my_function ( $var_not_detected, $another_var_not_detected ) {
# These arguments are NOT detected as variables...
}
# The value of 'id' is not detected as a variable...
$working_variable = array ( 'id' => $var_not_detected );Is Detected = variable is highlighted
Not Detected = variable NOT highlighted
sebdesign and afilina
Metadata
Metadata
Assignees
Labels
big picturePolicy or high level discussionPolicy or high level discussionenhancementAn enhancement or new featureAn enhancement or new feature