What is the best way to get the root app directory from inside the controller? Is it possible to get it outside of the controller?
Now I get it by passing it (from parameters) to the service as an argument, like this:
services:
sr_processor:
class: Pro\Processor
arguments: [%kernel.root_dir%]
Is there a better, simpler way to get this information in Symfony2?
%kernel.project_dir%
to get to root of your project. – Knapweed["%kernel.root_dir%"]
– Forewoman