* SPDX-License-Identifier: MIT */ declare(strict_types=1); namespace Respect\Validation; interface Rule { public const string TEMPLATE_STANDARD = '__standard__'; public function evaluate(mixed $input): Result; }