FleetCart/Modules/Coupon/Checkers/CouponExists.php

19 lines
339 B
PHP
Raw Normal View History

2023-06-11 12:14:03 +00:00
<?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);
}
}