respect-validation/library/Rules/AbstractSearcher.php
Henrique Moody 272f18dcf5
Apply "Symfony.Functions.ScopeOrder"
Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2019-05-11 20:00:19 +02:00

46 lines
975 B
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\Helpers\CanValidateUndefined;
use function in_array;
/**
* Abstract class for searches into arrays.
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
abstract class AbstractSearcher extends AbstractRule
{
use CanValidateUndefined;
/**
* {@inheritDoc}
*/
public function validate($input): bool
{
$dataSource = $this->getDataSource();
if ($this->isUndefined($input) && empty($dataSource)) {
return true;
}
return in_array($input, $dataSource, true);
}
/**
* @return mixed[]
*/
abstract protected function getDataSource(): array;
}