| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /*
- * Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
- * SPDX-License-Identifier: MIT
- */
- declare(strict_types=1);
- namespace Respect\Validation\Exceptions;
- /**
- * @author Alexandre Gomes Gaigalas <alganet@gmail.com>
- * @author Henrique Moody <henriquemoody@gmail.com>
- * @author William Espindola <oi@williamespindola.com.br>
- */
- final class EachException extends NestedValidationException
- {
- /**
- * {@inheritDoc}
- */
- protected $defaultTemplates = [
- self::MODE_DEFAULT => [
- self::STANDARD => '{{name}} 中的每个项都必须有效',
- ],
- self::MODE_NEGATIVE => [
- self::STANDARD => '{{name}} 中的每个项都必须无效',
- ],
- ];
- /**
- * {@inheritDoc}
- *
- * @todo This method shares too much with the parent implementation
- */
- public function getMessages(array $templates = []): array
- {
- $messages = [];
- $count = -1;
- foreach ($this->getChildren() as $exception) {
- $count++;
- $id = $exception->getId();
- $messages[$id . '.' . $count] = $this->renderMessage(
- $exception,
- $this->findTemplates($templates, $this->getId())
- );
- }
- return $messages;
- }
- }
|