rector/packages/NodeNameResolver/Regex/RegexPatternDetector.php
Tomas Votruba 6736aed6b9 Updated Rector to commit e783801584b7778aa0d0b15fc0ec918d81b2af6a
e783801584 [Php71] Handle variadic check inside function with function_exists() check (#244)
2021-06-18 17:14:06 +00:00

28 lines
719 B
PHP

<?php
declare (strict_types=1);
namespace Rector\NodeNameResolver\Regex;
use RectorPrefix20210618\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 (\RectorPrefix20210618\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);
}
}