mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-12 09:09:41 +01:00
1c11626f0a
Rather than automatically deriving getType() from the class name.
16 lines
325 B
PHP
16 lines
325 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Scalar\MagicConst;
|
|
|
|
use PhpParser\Node\Scalar\MagicConst;
|
|
|
|
class Namespace_ extends MagicConst
|
|
{
|
|
public function getName() : string {
|
|
return '__NAMESPACE__';
|
|
}
|
|
|
|
function getType() : string {
|
|
return 'Scalar_MagicConst_Namespace';
|
|
}
|
|
} |