1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php declare(strict_types=1);
- namespace PhpParser\Node\Name;
- class Relative extends \PhpParser\Node\Name
- {
-
- public function isUnqualified() : bool {
- return false;
- }
-
- public function isQualified() : bool {
- return false;
- }
-
- public function isFullyQualified() : bool {
- return false;
- }
-
- public function isRelative() : bool {
- return true;
- }
- public function toCodeString() : string {
- return 'namespace\\' . $this->toString();
- }
-
- public function getType() : string {
- return 'Name_Relative';
- }
- }
|