This bundle will trigger an exception Symfony 4.
|
$resources = array_merge(array('StarRatingBundle::rating.html.twig'), $resources); |
To solve this, change the line with:
$resources = array_merge(array('@StarRatingBundle/rating.html.twig'), $resources);
Then add and alias to /config/packages/twig.yaml:
twig:
paths:
'%kernel.project_dir%/templates': templates
'%kernel.project_dir%/vendor/blackknight467/star-rating-bundle/blackknight467/StarRatingBundle/Resources/views': StarRatingBundle
This bundle will trigger an exception Symfony 4.
StarRatingBundle/DependencyInjection/StarRatingExtension.php
Line 31 in 08e7caf
To solve this, change the line with:
Then add and alias to /config/packages/twig.yaml: