views:

27

answers:

0

So I've got a controller that I want to be camel cased:

MisterFoobarController

So I created it like this:

zf create controller mister-foobar

which created something like Mister-foobarController.php

but inside of it created it correctly as MisterFoobarController.

How do I create camel cased multiple word resources with the Zend_Tool command line interface?

Also, how do I remove or delete the junk I just created from the project file? Is there a command or should I edit the file by hand?