Neos\Neos\Command\NodeCommandControllerPlugin::getSubCommandShortDescription PHP Метод

getSubCommandShortDescription() публичный статический Метод

Returns a short description
public static getSubCommandShortDescription ( string $controllerCommandName ) : string
$controllerCommandName string Name of the command in question, for example "repair"
Результат string A piece of text to be included in the overall description of the node:xy command
    public static function getSubCommandShortDescription($controllerCommandName)
    {
        switch ($controllerCommandName) {
            case 'repair':
                return 'Run integrity checks related to Neos features';
        }
    }