1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-19 03:52:33 +01:00

12 lines
187 B
PHP
Raw Normal View History

<?php
namespace PhpParser\Node\Scalar\MagicConst;
use PhpParser\Node\Scalar\MagicConst;
class Dir extends MagicConst
{
public function getName() {
return '__DIR__';
}
}