244328476d6bac95a148ab5d888ad7396895671f
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Scalar / MagicConst / Class_.php
1 <?php declare(strict_types=1);
2
3 namespace PhpParser\Node\Scalar\MagicConst;
4
5 use PhpParser\Node\Scalar\MagicConst;
6
7 class Class_ extends MagicConst
8 {
9     public function getName() : string {
10         return '__CLASS__';
11     }
12     
13     public function getType() : string {
14         return 'Scalar_MagicConst_Class';
15     }
16 }