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
WireHttpMulti.php identifies active handles using (int) $row['handle'] and (int) $ch. Since PHP 8 represents cURL handles as CurlHandle objects, would it be clearer and more robust to use spl_object_id() in both places?
WireHttpMulti.php identifies active handles using
(int) $row['handle']and(int) $ch. Since PHP 8 represents cURL handles as CurlHandle objects, would it be clearer and more robust to usespl_object_id()in both places?