Minor bug - array_sort doesn’t seem to support true/false for the sortTypeOrFunction argument on live reloads
array_sort
Apparently true and false are now the actual bool type, and array_sort wants that very specifically. bool(true) works for a workaround.
true
false
bool
bool(true)