respect-validation/library/Rules/When.php
Danilo Correa 54e3f99ec4
Apply contribution guidelines to "When" rule
Co-authored-by: Henrique Moody <henriquemoody@gmail.com>
2018-11-25 19:21:29 +01:00

95 lines
1.9 KiB
PHP

<?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.
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
use Respect\Validation\Exceptions\AlwaysInvalidException;
use Respect\Validation\Validatable;
/**
* A ternary validator that accepts three parameters.
*
* @author Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
* @author Danilo Correa <danilosilva87@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
* @author Hugo Hamon <hugo.hamon@sensiolabs.com>
*/
final class When extends AbstractRule
{
/**
* @var Validatable
*/
private $when;
/**
* @var Validatable
*/
private $then;
/**
* @var Validatable
*/
private $else;
public function __construct(Validatable $when, Validatable $then, Validatable $else = null)
{
$this->when = $when;
$this->then = $then;
if (null === $else) {
$else = new AlwaysInvalid();
$else->setTemplate(AlwaysInvalidException::SIMPLE);
}
$this->else = $else;
}
/**
* {@inheritdoc}
*/
public function validate($input): bool
{
if ($this->when->validate($input)) {
return $this->then->validate($input);
}
return $this->else->validate($input);
}
/**
* {@inheritdoc}
*/
public function assert($input): void
{
if ($this->when->validate($input)) {
$this->then->assert($input);
return;
}
$this->else->assert($input);
}
/**
* {@inheritdoc}
*/
public function check($input): void
{
if ($this->when->validate($input)) {
$this->then->check($input);
return;
}
$this->else->check($input);
}
}