mirror of
https://github.com/danog/PHP-Parser.git
synced 2025-01-05 20:48:28 +01:00
12 lines
198 B
PHP
12 lines
198 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Scalar\MagicConst;
|
|
|
|
use PhpParser\Node\Scalar\MagicConst;
|
|
|
|
class File extends MagicConst
|
|
{
|
|
public function getName() : string {
|
|
return '__FILE__';
|
|
}
|
|
} |