tao-test/app/vendor/respect/validation/library/Exceptions/GroupedValidationException.php

38 lines
1.0 KiB
PHP
Raw Normal View History

2022-08-29 20:14:13 +02:00
<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
namespace Respect\Validation\Exceptions;
class GroupedValidationException extends NestedValidationException
{
const NONE = 0;
const SOME = 1;
public static $defaultTemplates = [
self::MODE_DEFAULT => [
self::NONE => 'All of the required rules must pass for {{name}}',
self::SOME => 'These rules must pass for {{name}}',
],
self::MODE_NEGATIVE => [
self::NONE => 'None of there rules must pass for {{name}}',
self::SOME => 'These rules must not pass for {{name}}',
],
];
public function chooseTemplate()
{
$numRules = $this->getParam('passed');
$numFailed = $this->getRelated()->count();
return $numRules === $numFailed ? static::NONE : static::SOME;
}
}