Get the namespace.
string The found namespace.
public function parseNamespace() { $name = ''; while (($token = $this ->next()) && ($token[0] === T_STRING || $token[0] === T_NS_SEPARATOR)) { $name .= $token[1]; } return $name; }