2019-10-07 21:59:40 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Engelsystem\Test\Unit\Http\Validation\Rules\Stub;
|
|
|
|
|
|
|
|
class ParentClassImplementation
|
|
|
|
{
|
|
|
|
/** @var bool */
|
|
|
|
public $validateResult = true;
|
|
|
|
|
|
|
|
/** @var mixed */
|
|
|
|
public $lastInput;
|
|
|
|
|
2022-12-14 00:28:34 +01:00
|
|
|
public function validate(mixed $input): bool
|
2019-10-07 21:59:40 +02:00
|
|
|
{
|
|
|
|
$this->lastInput = $input;
|
|
|
|
|
|
|
|
return $this->validateResult;
|
|
|
|
}
|
|
|
|
}
|