/**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     try {
         $this->pluginEnabled();
         if ($this->kuduHelper->testConnection()) {
             $this->info('Connection test to Kudu was successful!');
         }
     } catch (PluginNotEnabledException $e) {
         $this->info($e->getMessage());
     }
 }