1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-11-27 04:14:44 +01:00
PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/Trait_.php
Nikita Popov 1c11626f0a Add explicit getType() methods
Rather than automatically deriving getType() from the class name.
2017-11-12 21:27:14 +01:00

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';
}
}