Open
Description
In the current version we still use a lot of imperative code which is not very good in my opinion.
Code like for loops
should be replaced with the much more functional functions such as array_map
and array_filter
.
This does however not coincide with the inherit OOP based code which PHP promotes, which does favor imperative code.
A middle ground will need to be found for this.