I need to access a method from a different controller inside another controller. How can I do it? Can I use this->get method?
Can I include the contr
You can define your controller as service, then get it in another controller.
In your services.yml define needed controller as a service:
services:
your_service_name:
class: YourCompany\YourBundle\Controller\YourController
Then in any controller you'll be able to get this service via container:
$yourController = $this->get('your_service_name');
There is some useful information about Controllers as Services in documentation