mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-14 04:44:57 +01:00
28 lines
719 B
PHP
28 lines
719 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\NodeNameResolver\Regex;
|
|
|
|
use RectorPrefix20211022\Nette\Utils\Strings;
|
|
final class RegexPatternDetector
|
|
{
|
|
/**
|
|
* @var string[]
|
|
*
|
|
* This prevents miss matching like "aMethoda"
|
|
*/
|
|
private const POSSIBLE_DELIMITERS = ['#', '~', '/'];
|
|
public function isRegexPattern(string $name) : bool
|
|
{
|
|
if (\RectorPrefix20211022\Nette\Utils\Strings::length($name) <= 2) {
|
|
return \false;
|
|
}
|
|
$firstChar = $name[0];
|
|
$lastChar = $name[\strlen($name) - 1];
|
|
if ($firstChar !== $lastChar) {
|
|
return \false;
|
|
}
|
|
return \in_array($firstChar, self::POSSIBLE_DELIMITERS, \true);
|
|
}
|
|
}
|