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

handle() public method

Run the package migrations.
public handle ( )
    public function handle()
    {
        \File::copyDirectory(__DIR__ . '/../../../config', base_path() . '/config');
        $appDeviseConfigpath = config_path() . '/devise';
        foreach ($this->emptyTargets as $fileName) {
            \File::put($appDeviseConfigpath . '/' . $fileName, "<?php return array();\n// data will merge with Devise " . $fileName);
        }
    }
DevisePublishConfigsCommand