I was having issues with running PHP mess detector on save because simplexml_load_string function was not found. In my particular case I had to install XML library with sudo apt install php7.2-xml -y and restart Apache to make it work. I think this should be present in the documentation.
Thanks!
I was having issues with running PHP mess detector on save because
simplexml_load_string
function was not found. In my particular case I had to install XML library withsudo apt install php7.2-xml -y
and restartApache
to make it work. I think this should be present in the documentation. Thanks!