summaryrefslogtreecommitdiff
path: root/src/Http/Validation/Rules/Between.php
blob: 106a93ac1c6a92487b7b5864bb2d52c0013deab4 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

namespace Engelsystem\Http\Validation\Rules;

use Respect\Validation\Rules\Between as RespectBetween;

class Between extends RespectBetween
{
    use StringInputLength;
}