This commit is contained in:
orklah 2020-12-07 18:35:05 +01:00
parent ae8d3e7b6b
commit e3ac706e72

View File

@ -105,7 +105,7 @@ class InsaneComparisonAnalyzer implements AfterExpressionAnalysisInterface
$eligible_string = null; $eligible_string = null;
foreach ($string_operand->getAtomicTypes() as $possibly_string) { foreach ($string_operand->getAtomicTypes() as $possibly_string) {
if ($possibly_string instanceof TLiteralString) { if ($possibly_string instanceof TLiteralString) {
if(!preg_match('#\D#', $possibly_string->value[0] ?? '')) { if(preg_match('#\D#', $possibly_string->value[0] ?? '')) {
$eligible_string = $possibly_string; $eligible_string = $possibly_string;
break; break;
} }