Php – Can array_map() and methods using array_map() be #[Pure]?
I have a function that had the #[Pure] attribute, but after I changed the function to use array_map in it, PhpStorm complains that the "Method might produce side effects". I also see that array_map is not marked as #[Pure] and…