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

setupAdminUser() protected method

[setupAdminUser description]
protected setupAdminUser ( ) : [type]
return [type]
    protected function setupAdminUser()
    {
        $email = "[email protected]";
        $user = "devise";
        $pass = "password";
        $email = $this->io()->ask("Admin email", $email);
        $user = $this->io()->ask("Admin username", $user);
        $pass = $this->io()->ask("Admin password", $pass);
        return array($email, $user, $pass);
    }