Reputation: 276
When applying the Twig filter "localizednumber", the following error is thrown:
Unknown "localizednumber" filter in MyBundle:Home:home.html.twig at line 558.
I have installed Twig Extensions as well as PHP Intl.
What could be the issue here?
Upvotes: 0
Views: 1895
Reputation: 2598
Did you declare the Intl Extension in your services?
If not, add this:
<service id="twig.extension.intl"
class="Twig_Extensions_Extension_Intl">
<tag name="twig.extension" />
</service>
in your app/config/services.xml
.
Upvotes: 3