Details
Description
When i create module
zf create module blog
and then controller in this module
zf create controller post 1 blog
i get error in class name
class PostController extends Zend_Controller_Action
but i should have
class Blog_PostController extends Zend_Controller_Action
Patch to prefix controllers created within modules with Module_
I don't know if there is a better place to format (ucfirst()) the module name?
(Related to fix for
ZF-6853)ZF-6853)