Thanks. I’ve been forced to bump my servers PHP version then.
For anyone looking here – using Ubuntu 18.04 and Nginx – I’ve made a handy oneliner for my own servers that might help out:
sudo add-apt-repository ppa:ondrej/php -y;apt install php7.4 php7.4-{zip,curl,common,fpm,cli,gd,json,mysql,opcache,readline,bcmath} -y;sed -i ‘s/php7\.2/php7\.4/’ /etc/nginx/sites-enabled/000-default.conf;service nginx restart;
Please look it through if you plan on using it. Especially the sed command requires attention.