Commit caf9948c by Alexander Makarov

fixes #377

parent 6d9338b5
......@@ -13,7 +13,7 @@ use yii\base\InlineAction;
use yii\console\Controller;
use yii\console\Exception;
use yii\console\Request;
use yii\helpers\StringHelper;
use yii\helpers\Inflector;
/**
* This command provides help information about console commands.
......@@ -96,7 +96,7 @@ class HelpController extends Controller
foreach ($class->getMethods() as $method) {
$name = $method->getName();
if ($method->isPublic() && !$method->isStatic() && strpos($name, 'action') === 0 && $name !== 'actions') {
$actions[] = StringHelper::camel2id(substr($name, 6));
$actions[] = Inflector::camel2id(substr($name, 6));
}
}
sort($actions);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment