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

__construct() public method

Setup the application container as we'll need this for running migrations.
public __construct ( Illuminate\Container\Container $app )
$app Illuminate\Container\Container
    public function __construct(Container $app)
    {
        parent::__construct();
        $this->app = $app;
        $this->basePath = $this->app->basePath();
        $this->Config = $this->app->make('config');
        $this->DeviseMigrateCommand = new DeviseMigrateCommand($this->app);
        $this->DeviseSeedCommand = new DeviseSeedCommand($this->app);
        $this->DevisePublishAssetsCommand = new DevisePublishAssetsCommand($this->app);
        $this->DevisePublishConfigsCommand = new DevisePublishConfigsCommand($this->app);
        $this->Artisan = \Artisan::getFacadeRoot();
    }