1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-12 01:19:47 +01:00
PHP-Parser/lib/PHPParser/Node/Scalar/NSConst.php

14 lines
375 B
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
class PHPParser_Node_Scalar_NSConst extends PHPParser_Node_Scalar
{
/**
* Constructs a __NAMESPACE__ const node
*
* @param int $line Line
* @param null|string $docComment Nearest doc comment
*/
public function __construct($line = -1, $docComment = null) {
parent::__construct(array(), $line, $docComment);
}
2011-06-05 18:40:04 +02:00
}