Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. interface BuyerContract
  2. {
  3. public function getNumberOfPurchasesPerMonth();
  4. public function getTotalAmountOfPurchases();
  5. }
  6.  
  7. class PriceService
  8. {
  9. public function calculateFinalPrice($price, $coupons, BuyerContract $buyer)
  10. {
  11. // ***
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement