Skip to content

Instantly share code, notes, and snippets.

@goiblas
Created September 9, 2019 06:46
Show Gist options
  • Save goiblas/f23e14fabc4757928157675aecfbbf20 to your computer and use it in GitHub Desktop.
Save goiblas/f23e14fabc4757928157675aecfbbf20 to your computer and use it in GitHub Desktop.
Reto Refactorización WRP 34
<?php
class Payment {
// ... mas codigo
function getCantidades()
{
if ($this->isDead)
return $this->deadAmount();
if ($this->isSeparated)
return $this->separatedAmount();
if ($this->isRetired)
return $this->retiredAmount();
return $this->normalPayAmount();
}
// ... mas codigo
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment