| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- /*
- * Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
- * SPDX-License-Identifier: MIT
- */
- declare(strict_types=1);
- namespace Respect\Validation\Rules;
- use Respect\Validation\Exceptions\EachException;
- use Respect\Validation\Exceptions\ValidationException;
- use Respect\Validation\Helpers\CanValidateIterable;
- use Respect\Validation\Validatable;
- /**
- * Validates whether each value in the input is valid according to another rule.
- *
- * @author Alexandre Gomes Gaigalas <alganet@gmail.com>
- * @author Henrique Moody <henriquemoody@gmail.com>
- * @author Nick Lombard <github@jigsoft.co.za>
- * @author William Espindola <oi@williamespindola.com.br>
- */
- final class Each extends AbstractRule
- {
- use CanValidateIterable;
- /**
- * @var Validatable
- */
- private $rule;
- /**
- * Initializes the constructor.
- */
- public function __construct(Validatable $rule)
- {
- $this->rule = $rule;
- }
- /**
- * {@inheritDoc}
- */
- public function assert($input): void
- {
- if (!$this->isIterable($input)) {
- throw $this->reportError($input);
- }
- $exceptions = [];
- foreach ($input as $value) {
- try {
- $this->rule->assert($value);
- } catch (ValidationException $exception) {
- $exceptions[] = $exception;
- }
- }
- if (!empty($exceptions)) {
- /** @var EachException $eachException */
- $eachException = $this->reportError($input);
- $eachException->addChildren($exceptions);
- throw $eachException;
- }
- }
- /**
- * {@inheritDoc}
- */
- public function check($input): void
- {
- if (!$this->isIterable($input)) {
- throw $this->reportError($input);
- }
- foreach ($input as $value) {
- $this->rule->check($value);
- }
- }
- /**
- * {@inheritDoc}
- */
- public function validate($input): bool
- {
- try {
- $this->check($input);
- } catch (ValidationException $exception) {
- return false;
- }
- return true;
- }
- }
|