/**
  * Create a new command instance.
  *
  * @return void
  */
 public function __construct(ModelCreator $p)
 {
     parent::__construct();
     $this->creator = $p;
 }
 /**
  * Create a new command instance.
  *
  * @return void
  */
 public function __construct(Initiator $p)
 {
     parent::__construct();
     $this->creator = $p;
 }