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 push() method in QueueFake assumes an object for the $job parameter. It does not accept a string for the job. It then attempts to do a get_class on a string and fails.
As in the require Queue class createPayloadArray method it needs to first determine if $job is an object and only use get_class if it an object and just use the $job value if it is a string.
Description:
The push() method in QueueFake assumes an object for the $job parameter. It does not accept a string for the job. It then attempts to do a get_class on a string and fails.
As in the require Queue class createPayloadArray method it needs to first determine if $job is an object and only use get_class if it an object and just use the $job value if it is a string.
The text was updated successfully, but these errors were encountered: