* * For the full copyright and license information, please view the LICENSE file * that was distributed with this source code. */ declare(strict_types=1); namespace Respect\Validation\Exceptions; use function count; /** * @author Alexandre Gomes Gaigalas * @author Henrique Moody */ class GroupedValidationException extends NestedValidationException { public const NONE = 'none'; public const SOME = 'some'; /** * {@inheritDoc} */ protected $defaultTemplates = [ self::MODE_DEFAULT => [ self::NONE => '所有必需的规则都必须传递给 {{name}}', self::SOME => '这些规则必须传递给 {{name}}', ], self::MODE_NEGATIVE => [ self::NONE => '所有规则都不能传递给 {{name}}', self::SOME => '这些规则不能传递给 {{name}}', ], ]; /** * {@inheritDoc} */ protected function chooseTemplate(): string { $numRules = $this->getParam('passed'); $numFailed = count($this->getChildren()); return $numRules === $numFailed ? self::NONE : self::SOME; } }