Matthias\SymfonyConsoleForm\Form\FormUtil::humanize PHP Method

humanize() private static method

Copied from Symfony\Component\Form method humanize.
private static humanize ( $text ) : string
$text
return string
    private static function humanize($text)
    {
        return ucfirst(trim(strtolower(preg_replace(array('/([A-Z])/', '/[_\\s]+/'), array('_$1', ' '), $text))));
    }