18 lines
310 B
PHP
18 lines
310 B
PHP
|
<?php
|
||
|
|
||
|
namespace Engelsystem\Test\Unit\Http\Validation\Rules\Stub;
|
||
|
|
||
|
class ParentClassImplementation
|
||
|
{
|
||
|
public bool $validateResult = true;
|
||
|
|
||
|
public mixed $lastInput;
|
||
|
|
||
|
public function validate(mixed $input): bool
|
||
|
{
|
||
|
$this->lastInput = $input;
|
||
|
|
||
|
return $this->validateResult;
|
||
|
}
|
||
|
}
|