Skip to content

Instantly share code, notes, and snippets.

@delineas
Created September 13, 2019 10:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delineas/ce06f7aea4bc91f780976297f206146c to your computer and use it in GitHub Desktop.
Save delineas/ce06f7aea4bc91f780976297f206146c to your computer and use it in GitHub Desktop.
Reto Refactorización WRP 36
<?php
class Product {
// ... more code
function amount() {
$product_price = $this->quantity * $this->productPrice;
$discountRate = 1;
if($product_price > 1500) {
$discountRate = 0.7;
}
else {
$discountRate = 0.95;
}
return $product_price * $discountRate;
}
// ... more code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment