1: <?php declare(strict_types=1);
2:
3: namespace PhpParser\Node\Scalar\MagicConst;
4:
5: use PhpParser\Node\Scalar\MagicConst;
6:
7: class File extends MagicConst {
8: public function getName(): string {
9: return '__FILE__';
10: }
11:
12: public function getType(): string {
13: return 'Scalar_MagicConst_File';
14: }
15: }
16: