Change Version of PHPMyAdmin PHP

I want to install PHPMyAdmin 5.0 which requires php 7.1+. How would I change the version of PHP that runs PHPMyAdmin? I cant seem to find a config or setting anywhere.

Thanks

Error: PHP 7.1+ is required.
Currently installed version is: 7.0.33

This will do

cp /usr/local/lsws/lsphp71/bin/lsphp /usr/local/lscp/fcgi-bin/lsphp
systemctl restart lscpd

Works, BUT. You need to stop lscpd first otherwise the you will get a file in use error.

Correct method:

systemctl stop lscpd
cp /usr/local/lsws/lsphp71/bin/lsphp /usr/local/lscp/fcgi-bin/lsphp
systemctl start lscpd

Thanks!