Merge pull request #251 from dantleech/qualified_name_string_return

Added missing string return type for QualfiedName#getResolvedName
This commit is contained in:
Rob Lourens 2018-07-27 09:59:32 -07:00 коммит произвёл GitHub
Родитель 5123f9c190 fc3373c203
Коммит 58814f104f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -75,7 +75,7 @@ class QualifiedName extends Node implements NamespacedNameInterface {
* - name resolution is not valid for this element (e.g. part of the name in a namespace definition)
* - name cannot be resolved (unqualified namespaced function/constant names that are not explicitly imported.)
*
* @return null|ResolvedName
* @return null|string|ResolvedName
* @throws \Exception
*/
public function getResolvedName($namespaceDefinition = null) {