Use in_array instead of array_search + comparison

This commit is contained in:
Gabriel Caruso 2018-10-31 10:09:18 -03:00
Родитель 0818b70edd
Коммит b20df05d62
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: EA85C7988F5A6877
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
}