@ -129,7 +129,7 @@ class HelpController extends Controller
$files = scandir($module->getControllerPath());
foreach ($files as $file) {
if (strcmp(substr($file, -14), 'Controller.php') === 0) {
$commands[] = $prefix . lcfirst(substr(basename($file), 0, -14));
$commands[] = $prefix . Inflector::camel2id(substr(basename($file), 0, -14));
}