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

handle() public method

Run the package migrations.
public handle ( )
    public function handle()
    {
        $this->wizard()->refreshEnvironment();
        $this->setupEnvironment();
        $this->setupDatabase();
        $this->setupConfigOverrides();
        $this->setupAppName();
        $this->wizard()->refreshEnvironment();
        list($email, $user, $pass) = $this->setupAdminUser();
        $this->io()->comment("Please wait while devise is installing...");
        $this->runInstallCommands();
        $this->wizard()->createAdminUser($email, $user, $pass);
    }