toby/app/Helpers/Rules/UsedVacationDaysInSameRange.php
Adrian Hopek f3559930c2 #20 - wip
2022-01-27 09:14:08 +01:00

16 lines
275 B
PHP

<?php
declare(strict_types=1);
namespace Toby\Helpers\Rules;
use Closure;
use Toby\Models\VacationRequest;
class UsedVacationDaysInSameRange
{
public function check(VacationRequest $vacationRequest, Closure $next)
{
return $next($vacationRequest);
}
}