/**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $this->hipsupport->online($this->argument('minutes'));
     $this->info('HipSupport is Online.');
 }
 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $this->hipsupport->offline();
     $this->info('HipSupport is Offline.');
 }