mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 04:24:43 +01:00
14 lines
374 B
PHP
14 lines
374 B
PHP
<?php
|
|
|
|
class PHPParser_Node_Scalar_TraitConst extends PHPParser_Node_Scalar
|
|
{
|
|
/**
|
|
* Constructs a __TRAIT__ 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);
|
|
}
|
|
} |