- Issue created by @efpapado
- Status changed to Needs review
13 days ago 12:46pm 27 March 2025 - 🇬🇧United Kingdom dahousecat
Patch applied cleanly and fixed the error, but the then I got this error upon enabling the module:
PHP Fatal error: Trait "Symfony\Component\DependencyInjection\ContainerAwareTrait" not found in /var/www/html/web/modules/contrib/queue_stats/src/Plugin/QueueStatistic/EstimatedTimeToFinish.php on line 22
I replaced
use Symfony\Component\DependencyInjection\ContainerAwareTrait;
with
use League\Container\ContainerAwareTrait;
in EstimatedTimeToFinish.php and now it works.