Change record status: 
Description: 

implode() expects separator argument as array since php 7.4. in 8.0.0 it is not supported.

The code before:
$args = implode($f, ',');

The code after:
$args = implode($f, [',']);

Link to the documentation.

Impacts: 
Module developers
Themers
Site templates, recipes and distribution developers