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';
        }
    }