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