respect-validation/tests/library/Transformers/StubTransformer.php
Henrique Moody 707dcae65f
Refactor the "UndefOr" rule and related classes
This commit will rename the "Optional" rule to"UndefOr" while soft
deprecating the old name. It should work the same as the previous one
but with a different name. It will also prefix the result ID, allowing
more message customization.

While working on it, I realized that the prefix "undefOr" had a typo,
and it was using "undefOf" instead. I fixed that, too.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2024-03-26 01:35:36 +01:00

22 lines
433 B
PHP

<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
namespace Respect\Validation\Test\Transformers;
use Respect\Validation\Transformers\RuleSpec;
use Respect\Validation\Transformers\Transformer;
final class StubTransformer implements Transformer
{
public function transform(RuleSpec $ruleSpec): RuleSpec
{
return $ruleSpec;
}
}