/**
  * Create a new command instance.
  */
 public function __construct()
 {
     parent::__construct();
 }
 public function __construct(JsonGetter $getter, Converter $converter)
 {
     $this->getter = $getter;
     $this->converter = $converter;
     parent::__construct();
 }
 public function __construct(TaskContollerJob $job)
 {
     $this->job = $job;
     parent::__construct();
 }
 public function __construct(Notifire $notifire)
 {
     $this->notifire = $notifire;
     parent::__construct();
 }