FleetCart/Modules/Coupon/Checkers/CouponExists.php
2023-06-11 13:14:03 +01:00

19 lines
339 B
PHP

<?php
namespace Modules\Coupon\Checkers;
use Closure;
use Modules\Coupon\Exceptions\CouponNotExistsException;
class CouponExists
{
public function handle($coupon, Closure $next)
{
if (is_null($coupon)) {
throw new CouponNotExistsException;
}
return $next($coupon);
}
}