Symfony 2.8
Being in a Service called from a Command, Is there any way to execute/invoke a Controller Action as a Process Object? Or do I have to covert that Controller Action into a Command in order to be called by a Process?
I need to execute iterative BL (business logic) elements, already coded into Controller Actions.
The invoking chain is:
Scheduled Command --> Service Container --> N Processes or whatever with BL.
Service must control/monitor the Processes execution. (start, run, stop, etc..)
Any other way?
Cheers!!