From 3230e2fec0a9f7befe39169847237d139b4d6f34 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Mon, 11 May 2020 06:54:51 -0500 Subject: [PATCH] function was misspelled --- app/Jobs/Commands/Moons/MoonRentalInvoiceVerify.php | 2 +- app/Library/Moons/MoonCalc.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Jobs/Commands/Moons/MoonRentalInvoiceVerify.php b/app/Jobs/Commands/Moons/MoonRentalInvoiceVerify.php index aafeb4550..21f519837 100644 --- a/app/Jobs/Commands/Moons/MoonRentalInvoiceVerify.php +++ b/app/Jobs/Commands/Moons/MoonRentalInvoiceVerify.php @@ -13,7 +13,7 @@ use Log; //App Library //App Models - +use App\Models\Finances\PlayerDonationJournal; class MoonRentalInvoiceVerify implements ShouldQueue { diff --git a/app/Library/Moons/MoonCalc.php b/app/Library/Moons/MoonCalc.php index be1d8439d..32b29cdcf 100644 --- a/app/Library/Moons/MoonCalc.php +++ b/app/Library/Moons/MoonCalc.php @@ -473,7 +473,7 @@ class MoonCalc { /** * Calculate the total price, then pass it by reference to the calling function */ - private function CalclulateTotalPrice($ore, $perc, &$total) { + private function CalculateTotalPrice($ore, $perc, &$total) { //Calculate the prices from the ores if($ore != 'None') { $total = $this->CalcPrice($ore, $perc);