* SPDX-License-Identifier: MIT */ declare(strict_types=1); namespace Respect\Validation\Rules\Core; use Respect\Validation\Result; abstract class Simple extends Standard { public function evaluate(mixed $input): Result { return new Result($this->validate($input), $input, $this); } }