mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-30 11:35:48 +08:00
49 lines
1.1 KiB
PHP
49 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Respect\Validation\Rules;
|
|
|
|
use Respect\Validation\Helpers\CanValidateUndefined;
|
|
|
|
use function in_array;
|
|
use function is_scalar;
|
|
|
|
/**
|
|
* Abstract class for searches into arrays.
|
|
*
|
|
* @author Henrique Moody <henriquemoody@gmail.com>
|
|
*/
|
|
abstract class AbstractSearcher extends AbstractRule
|
|
{
|
|
use CanValidateUndefined;
|
|
|
|
/**
|
|
* @param mixed $input
|
|
* @return mixed[]
|
|
*/
|
|
abstract protected function getDataSource($input = null): array;
|
|
|
|
/**
|
|
* @deprecated Calling `validate()` directly from rules is deprecated. Please use {@see \Respect\Validation\Validator::isValid()} instead.
|
|
*/
|
|
public function validate($input): bool
|
|
{
|
|
$dataSource = $this->getDataSource($input);
|
|
|
|
if ($this->isUndefined($input) && empty($dataSource)) {
|
|
return true;
|
|
}
|
|
|
|
if (!is_scalar($input)) {
|
|
return false;
|
|
}
|
|
|
|
return in_array((string) $input, $dataSource, true);
|
|
}
|
|
}
|