I have the below code but I'm not getting all the results from the array
foreach ($reviewers as $login_name => $common_name) {
$allowed_values = [
'' => 'All',
$login_name => $common_name,
];
}
I have the below code but I'm not getting all the results from the array
foreach ($reviewers as $login_name => $common_name) {
$allowed_values = [
'' => 'All',
$login_name => $common_name,
];
}