Each time I declare more than one helper in a template, I systematically get an error because I type something like:
<?php echo use_helper('foo', 'bar') ?>
Which is incorrect and fails, because the symfony syntax stipulates that for the declaration of more than one helper, you must use use_helpers(), with a final s.
The question is: Should the symfony syntax stick more with the english grammar or with the developers reflexes? I don't ask for the banishment of use_helpers(), just for the ability of use_helper() to deal with more than one argument.