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
It seems v5.0 is not compatible with symfony 5.2.
I get multiple errors : Too few arguments to function Symfony\Component\Config\Definition\Builder\TreeBuilder::__construct(), 0 passed in /var/www/civc/meteoback/vendor/bcc/cron-manager-bundle/BCC/CronManagerBundle/DependencyInjection/Configuration.php on line 20 and at least 1 expected
This could be fix by:
BCC\CronManagerBundle\DependencyInjection\Configuration
$treeBuilder = new TreeBuilder('bcc_cron_manager');
if (method_exists($treeBuilder, 'getRootNode')) {
$rootNode = $treeBuilder->getRootNode();
} else {
// BC for symfony/config < 4.2
$rootNode = $treeBuilder->root('bcc_cron_manager');
}
Then there is a problem with the Twig extension:
Attempted to load class "Twig_Extension" from the global namespace.
Did you forget a "use" statement?
in vendor/bcc/cron-manager-bundle/BCC/CronManagerBundle/Twig/TwigExtension.php (line 5)
Then i get some errors with the controller, but i stop my investigation here...
The controller for URI "/admin/cron-manager/" is not callable: Controller "BCCCronManagerBundle:Default:index" does neither exist as service nor as class.
Are you sure your v5.0 version is compatible with sf5 at all ?
The text was updated successfully, but these errors were encountered:
Hello,
It seems v5.0 is not compatible with symfony 5.2.
I get multiple errors :
Too few arguments to function Symfony\Component\Config\Definition\Builder\TreeBuilder::__construct(), 0 passed in /var/www/civc/meteoback/vendor/bcc/cron-manager-bundle/BCC/CronManagerBundle/DependencyInjection/Configuration.php on line 20 and at least 1 expected
This could be fix by:
BCC\CronManagerBundle\DependencyInjection\Configuration
Then there is a problem with the Twig extension:
This could be fix by (not not tested) :
Then i get some errors with the controller, but i stop my investigation here...
Are you sure your v5.0 version is compatible with sf5 at all ?
The text was updated successfully, but these errors were encountered: