function Name::isRelative
Checks whether the name is explicitly relative to the current namespace. (E.g. namespace\Name)
Return value
bool Whether the name is relative
2 methods override Name::isRelative()
- FullyQualified::isRelative in vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Name/ FullyQualified.php - Checks whether the name is explicitly relative to the current namespace. (E.g. namespace\Name)
- Relative::isRelative in vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Name/ Relative.php - Checks whether the name is explicitly relative to the current namespace. (E.g. namespace\Name)
File
-
vendor/
nikic/ php-parser/ lib/ PhpParser/ Node/ Name.php, line 102
Class
Namespace
PhpParser\NodeCode
public function isRelative() : bool {
return false;
}