Devise\Support\Console\DeviseInstallCommand::askAboutDatabasePass PHP Method

askAboutDatabasePass() protected method

[askAboutDatabasePass description]
protected askAboutDatabasePass ( [type] $default ) : [type]
$default [type]
return [type]
    protected function askAboutDatabasePass($default)
    {
        // allows for empty passwords
        if ($default === '') {
            $default = ' ';
        }
        $answer = $this->io()->ask("What is your database password?", $default);
        return trim($answer) === '' ? '' : $answer;
    }