You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
engelsystem/tests/Unit/Http/Validation/Rules/Stub/ParentClassImplementation.php

24 lines
399 B
PHTML

<?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;
}
}