signature = $package->shortName() . ':install'; $this->description = 'Install ' . $package->name; $this->package = $package; $this->hidden = true; parent::__construct(); } public function handle() { $this ->processStartWith() ->processPublishes() ->processAskToRunMigrations() ->processCopyServiceProviderInApp() ->processStarRepo() ->processEndWith(); $this->info("{$this->package->shortName()} has been installed!"); } }