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
The variable $excludedIds is used to hold IDs that are excluded from the appointment roll call by the clerk. Currently, this variable is being handled as a comma-separated string, which is then split into an array using the explode function. This approach can lead to potential issues and reduced code clarity. $excludedIds should probably just be an array of ids and not a comma separated string.
The variable
$excludedIds
is used to hold IDs that are excluded from the appointment roll call by the clerk. Currently, this variable is being handled as a comma-separated string, which is then split into an array using the explode function. This approach can lead to potential issues and reduced code clarity.$excludedIds
should probably just be an array of ids and not a comma separated string.In the
getNextProcess
method:should be refactored to ensure $excludedIds is always an array.
In the
WorkstationProcessPreCall
class:should be refactored to handle $excludedIds as an array directly.
The text was updated successfully, but these errors were encountered: