mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 12:35:05 +01:00
13 lines
315 B
PHP
13 lines
315 B
PHP
<?php
|
|
|
|
class PHPParser_Node_Scalar_LineConst extends PHPParser_Node_Scalar
|
|
{
|
|
/**
|
|
* Constructs a __LINE__ const node
|
|
*
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(array $attributes = array()) {
|
|
parent::__construct(array(), $attributes);
|
|
}
|
|
} |