mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 23:35:45 +01:00
Some classes and one trait had some mismatch values for their "@author" annotation and this commit will fix the mismatch putting the correct authors. I used the "git blame" command to find out which people changed the file and created a list based on that information. Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
35 lines
900 B
PHP
35 lines
900 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_string;
|
|
use function preg_match;
|
|
|
|
/**
|
|
* Validates if a value is considered a valid PHP Label, so that it can be used as a variable, function or class name.
|
|
*
|
|
* @author Danilo Correa <danilosilva87@gmail.com>
|
|
* @author Emmerson Siqueira <emmersonsiqueira@gmail.com>
|
|
* @author Henrique Moody <henriquemoody@gmail.com>
|
|
*/
|
|
final class PhpLabel extends AbstractRule
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function validate($input): bool
|
|
{
|
|
return is_string($input) && preg_match('/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$/', $input);
|
|
}
|
|
}
|