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

namespace Engelsystem\Http\Validation\Rules;

use Respect\Validation\Rules\Min as RespectMin;

class Min extends RespectMin
{
    use StringInputLength;
}