mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-04 02:17:56 +01:00
12 lines
198 B
PHP
12 lines
198 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Scalar\MagicConst;
|
|
|
|
use PhpParser\Node\Scalar\MagicConst;
|
|
|
|
class Line extends MagicConst
|
|
{
|
|
public function getName() : string {
|
|
return '__LINE__';
|
|
}
|
|
} |