Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Services\PriceSystem;
  4.  
  5. interface Buyer
  6. {
  7. public function getNumberOfPurchasesPerMonth();
  8. public function getTotalAmountOfPurchases();
  9. }
  10.  
  11. class PriceManager
  12. {
  13. public function calculateFinalPrice($price, $coupons, Buyer $buyer)
  14. {
  15. // ***
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement