mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-03 09:57:51 +01:00
13 lines
313 B
PHP
13 lines
313 B
PHP
<?php
|
|
|
|
class PHPParser_Node_Scalar_DirConst extends PHPParser_Node_Scalar
|
|
{
|
|
/**
|
|
* Constructs a __DIR__ const node
|
|
*
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(array $attributes = array()) {
|
|
parent::__construct(array(), $attributes);
|
|
}
|
|
} |