Skip to content

Commit

Permalink
Fixed alphabetical order
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubKermes committed Nov 14, 2023
1 parent 5d16f33 commit 41539e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Services/DataImporterService.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ public function run(string $whoRunsIt = "admin"): void
new VeoDataImporterJob($this->importInfoId),
new WindDataImporterJob($this->importInfoId),
new WheeMoveDataImporterJob($this->importInfoId),
new ZwingsDataImporterJob($this->importInfoId),
new HopDataImporterJob($this->importInfoId),
new ZwingsDataImporterJob($this->importInfoId),
])->finally(function (): void {
ImportInfo::query()->where("id", $this->importInfoId)->update([
"status" => "finished",
Expand Down
2 changes: 1 addition & 1 deletion database/seeders/ProviderSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public function run(): void
["name" => BitMobilityDataImporter::getProviderName(), "color" => "#8da6e3"],
["name" => BoltDataImporter::getProviderName(), "color" => "#24f0a0"],
["name" => DottDataImporter::getProviderName(), "color" => "#f5c604"],
["name" => HopDataImporter::getProviderName(), "color" => "#ea1821"],
["name" => HulajDataImporter::getProviderName(), "color" => "#d6213f"],
["name" => LimeDataImporter::getProviderName(), "color" => "#00de00"],
["name" => LinkDataImporter::getProviderName(), "color" => "#def700"],
Expand All @@ -55,7 +56,6 @@ public function run(): void
["name" => VeoDataImporter::getProviderName(), "color" => "#000000"],
["name" => WindDataImporter::getProviderName(), "color" => "#fffa00"],
["name" => WheeMoveDataImporter::getProviderName(), "color" => "#31682d"],
["name" => HopDataImporter::getProviderName(), "color" => "#EA1821"],
];

foreach ($providers as $provider) {
Expand Down

0 comments on commit 41539e2

Please sign in to comment.