1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-15 10:57:11 +01:00
PHP-Parser/lib/PhpParser/Node/Scalar/MagicConst/File.php
2018-01-13 16:08:26 +01:00

17 lines
317 B
PHP

<?php declare(strict_types=1);
namespace PhpParser\Node\Scalar\MagicConst;
use PhpParser\Node\Scalar\MagicConst;
class File extends MagicConst
{
public function getName() : string {
return '__FILE__';
}
public function getType() : string {
return 'Scalar_MagicConst_File';
}
}