Use in_array instead of array_search + comparison
This commit is contained in:
Родитель
0818b70edd
Коммит
b20df05d62
|
@ -92,7 +92,7 @@ class QualifiedName extends Node implements NamespacedNameInterface {
|
|||
return null;
|
||||
}
|
||||
|
||||
if (array_search($lowerText = strtolower($this->getText()), ["self", "static", "parent"]) !== false) {
|
||||
if (in_array($lowerText = strtolower($this->getText()), ["self", "static", "parent"])) {
|
||||
return $lowerText;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче