1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-21 21:31:29 +01:00

12 lines
198 B
PHP
Raw Normal View History

<?php
namespace PhpParser\Node\Scalar\MagicConst;
use PhpParser\Node\Scalar\MagicConst;
class Line extends MagicConst
{
2017-04-28 21:40:59 +02:00
public function getName() : string {
return '__LINE__';
}
}