function was misspelled

This commit is contained in:
2020-05-11 06:54:51 -05:00
parent 39c934cdbe
commit 3230e2fec0
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ use Log;
//App Library //App Library
//App Models //App Models
use App\Models\Finances\PlayerDonationJournal;
class MoonRentalInvoiceVerify implements ShouldQueue class MoonRentalInvoiceVerify implements ShouldQueue
{ {

View File

@@ -473,7 +473,7 @@ class MoonCalc {
/** /**
* Calculate the total price, then pass it by reference to the calling function * 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 //Calculate the prices from the ores
if($ore != 'None') { if($ore != 'None') {
$total = $this->CalcPrice($ore, $perc); $total = $this->CalcPrice($ore, $perc);