Invalid.php 395 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: shenyang
  5. * Date: 2017/10/16
  6. * Time: 下午5:08
  7. */
  8. namespace app\frontend\modules\deduction\orderGoods\amount;
  9. class Invalid extends OrderGoodsDeductionAmount
  10. {
  11. public function getMaxAmount(){
  12. return 0;
  13. }
  14. public function getMinAmount(){
  15. return 0;
  16. }
  17. public function hasMinAmount(){
  18. return false;
  19. }
  20. }