Devise\Support\Console\DeviseInstallCommand::askAboutDatabasePass PHP 메소드

askAboutDatabasePass() 보호된 메소드

[askAboutDatabasePass description]
protected askAboutDatabasePass ( [type] $default ) : [type]
$default [type]
리턴 [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;
    }