mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
1c11626f0a
Rather than automatically deriving getType() from the class name.
16 lines
313 B
PHP
16 lines
313 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node\Scalar\MagicConst;
|
|
|
|
use PhpParser\Node\Scalar\MagicConst;
|
|
|
|
class Trait_ extends MagicConst
|
|
{
|
|
public function getName() : string {
|
|
return '__TRAIT__';
|
|
}
|
|
|
|
function getType() : string {
|
|
return 'Scalar_MagicConst_Trait';
|
|
}
|
|
} |