You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the last updates I get the following error in production environment in Symfony:
[Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException]
The service "data.collector.time" has a dependency on a non-existent parameter "data_collector.time.class". Did you mean one of these: "data_collector.templates", "data_collector.security.class"?
I get it only for production. Dev Environment works as expected. Adding the following line to parameters.php (in my case) seems to fix it:
'data_collector.time.class' => 'Symfony\Component\HttpKernel\DataCollector\TimeDataCollector'
(just a temorary fix).
The text was updated successfully, but these errors were encountered:
After the last updates I get the following error in production environment in Symfony:
[Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException]
The service "data.collector.time" has a dependency on a non-existent parameter "data_collector.time.class". Did you mean one of these: "data_collector.templates", "data_collector.security.class"?
I get it only for production. Dev Environment works as expected. Adding the following line to parameters.php (in my case) seems to fix it:
'data_collector.time.class' => 'Symfony\Component\HttpKernel\DataCollector\TimeDataCollector'
(just a temorary fix).
The text was updated successfully, but these errors were encountered: