Merge pull request #265 from carusogabriel/in_array

Use in_array instead of array_search + comparison
This commit is contained in:
Rob Lourens 2018-10-31 09:19:47 -07:00 коммит произвёл GitHub
Родитель 9f13272e85 b20df05d62
Коммит a266248840
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
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;
}