Is it possible to have sub-folders in the controllers folder?
Rather than have
controllers/ReportsController.php with actions:
public function fooAction(){ }
public functionbarAction(){ }
Can I use;
controllers/reports/fooController.php controllers/reports/barController.php
I just can't get that to work - maybe because it's not possible. I've used something similar in Code Igniter though.