mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-03 09:57:51 +01:00
12 lines
192 B
PHP
12 lines
192 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Scalar\MagicConst;
|
|
|
|
use PhpParser\Node\Scalar\MagicConst;
|
|
|
|
class Class_ extends MagicConst
|
|
{
|
|
public function getName() {
|
|
return '__CLASS__';
|
|
}
|
|
} |