ZF-10321: Zend_Tool create controller missing fully-qualified namespace
Description
zf create controller creates a controller file where the leading slash is missing on the extends section.
i.e. it creates:
namespace Core;
class IndexController extends Zend\Controller\Action
{
and should be:
namespace Core;
class IndexController extends \Zend\Controller\Action
{
Comments
Posted by Rob Allen (rob) on 2010-08-16T09:54:27.000+0000
Fixed: http://github.com/akrabat/zf2/… Pull request issued.
Posted by Rob Allen (rob) on 2010-09-04T13:01:17.000+0000
Merged to zf2