2019-10-07 21:59:40 +02:00
|
|
|
<?php
|
|
|
|
|
2023-02-03 20:41:59 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-10-07 21:59:40 +02:00
|
|
|
namespace Engelsystem\Test\Unit\Http\Validation\Rules\Stub;
|
|
|
|
|
|
|
|
use Engelsystem\Http\Validation\Rules\StringInputLength;
|
|
|
|
|
|
|
|
class UsesStringInputLength extends ParentClassImplementation
|
|
|
|
{
|
|
|
|
use StringInputLength;
|
|
|
|
}
|