Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurpar06 authored and StyleCIBot committed Apr 30, 2024
1 parent bff8ec7 commit 9aa4ebf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion app/Services/LegacyImporter/PirepImporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public function run($start = 0)
}

if ($row->pilotpay && $row->pilotpay != 0) {
$pilot_pay = Money::createFromAmount($row->pilotpay * ($duration)/60);
$pilot_pay = Money::createFromAmount($row->pilotpay * $duration / 60);
$financeSvc->debitFromJournal(
$pirep->airline->journal,
$pilot_pay,
Expand Down
1 change: 0 additions & 1 deletion app/Services/LegacyImporterService.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
use App\Services\LegacyImporter\FinalizeImporter;
use App\Services\LegacyImporter\FlightImporter;
use App\Services\LegacyImporter\GroupImporter;
use App\Services\LegacyImporter\LedgerImporter;
use App\Services\LegacyImporter\PirepImporter;
use App\Services\LegacyImporter\RankImport;
use App\Services\LegacyImporter\SettingsImporter;
Expand Down

0 comments on commit 9aa4ebf

Please sign in to comment.