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
There are 4 testSum tests, each including the sum of ["a", true, false, null]. The implementation of Sum uses array_sum, which throws a warning when values cannot be converted to int or float under PHP 8.3 (manual page). This causes the test suite to fail, so these tests should be changed or dropped, or modified to expect a warning from PHP 8.3 onwards.
The text was updated successfully, but these errors were encountered:
There are 4
testSum
tests, each including the sum of["a", true, false, null]
. The implementation ofSum
usesarray_sum
, which throws a warning when values cannot be converted toint
orfloat
under PHP 8.3 (manual page). This causes the test suite to fail, so these tests should be changed or dropped, or modified to expect a warning from PHP 8.3 onwards.The text was updated successfully, but these errors were encountered: