@@ -946,9 +946,9 @@ discard block |
||
946 | 946 | case ! empty($this->namespaces): |
947 | 947 | foreach ($this->namespaces as $ns) { |
948 | 948 | if (class_exists($ns . '\\' . $className) || interface_exists($ns . '\\' . $className)) { |
949 | - $className = $ns . '\\' . $className; |
|
950 | - $found = true; |
|
951 | - break; |
|
949 | + $className = $ns . '\\' . $className; |
|
950 | + $found = true; |
|
951 | + break; |
|
952 | 952 | } |
953 | 953 | } |
954 | 954 | |
@@ -975,7 +975,7 @@ discard block |
||
975 | 975 | } |
976 | 976 | |
977 | 977 | if ($found) { |
978 | - $identifier = $className . '::' . $const; |
|
978 | + $identifier = $className . '::' . $const; |
|
979 | 979 | } |
980 | 980 | } |
981 | 981 |