0

Long method part 13 for php missing $this

Leon il y a 3 mois mis à jour il y a 3 mois 1
if (isSummer($date)) {
  $charge = summerCharge($quantity);
} else {
  $charge = winterCharge($quantity);
}

Long method part 13 for php  

if ($this->isSummer($date)) {
  $charge = $this->summerCharge($quantity);
} else {
  $charge = winterCharge($quantity);
}