diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2019-10-07 21:59:40 +0200 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2019-10-07 21:59:40 +0200 |
commit | 8d090438b659b641dd0f6cbc99193f3b48b2fc4b (patch) | |
tree | 030e2b069d4583e6ad6e498612c959c15850c8e6 /tests/Unit/Http/Validation/Rules/Stub/ParentClassImplementation.php | |
parent | faf74150e9481ad9338eb6cc2428d02b24e9fc43 (diff) |
Validation rules: min/max/between: Use string length to compare strings
Diffstat (limited to 'tests/Unit/Http/Validation/Rules/Stub/ParentClassImplementation.php')
-rw-r--r-- | tests/Unit/Http/Validation/Rules/Stub/ParentClassImplementation.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/Unit/Http/Validation/Rules/Stub/ParentClassImplementation.php b/tests/Unit/Http/Validation/Rules/Stub/ParentClassImplementation.php new file mode 100644 index 00000000..1b6aaaf5 --- /dev/null +++ b/tests/Unit/Http/Validation/Rules/Stub/ParentClassImplementation.php @@ -0,0 +1,23 @@ +<?php + +namespace Engelsystem\Test\Unit\Http\Validation\Rules\Stub; + +class ParentClassImplementation +{ + /** @var bool */ + public $validateResult = true; + + /** @var mixed */ + public $lastInput; + + /** + * @param mixed $input + * @return bool + */ + public function validate($input): bool + { + $this->lastInput = $input; + + return $this->validateResult; + } +} |