19 lines
380 B
PHP
19 lines
380 B
PHP
<?php
|
|
|
|
namespace Modules\Coupon\Checkers;
|
|
|
|
use Closure;
|
|
use Modules\Coupon\Exceptions\MinimumSpendException;
|
|
|
|
class MinimumSpend
|
|
{
|
|
public function handle($coupon, Closure $next)
|
|
{
|
|
if ($coupon->didNotSpendTheRequiredAmount()) {
|
|
throw new MinimumSpendException($coupon->minimum_spend);
|
|
}
|
|
|
|
return $next($coupon);
|
|
}
|
|
}
|