respect-validation/library/Rules/ScalarVal.php
Henrique Moody 848c57d5ed
Apply contribution guidelines to "ScalarVal" rule
Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
Co-authored-by: Emmerson Siqueira <emmersonsiqueira@gmail.com>
2018-03-09 15:07:58 +01:00

33 lines
635 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 function is_scalar;
/**
* Validates whether the input is a scalar value or not.
*
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class ScalarVal extends AbstractRule
{
/**
* {@inheritdoc}
*/
public function validate($input): bool
{
return is_scalar($input);
}
}