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
public static function sortBy($array, $callback)
{
if (!is_callable($callback) || !is_array($array)) {
trigger_error('Arguments are in the wrong order', E_USER_ERROR);
} //@codeCoverageIgnore
It should also accept classes which implement \ArrayAccess.
The text was updated successfully, but these errors were encountered:
This is wrong:
It should also accept classes which implement
\ArrayAccess
.The text was updated successfully, but these errors were encountered: