1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-22 05:41:23 +01:00

13 lines
317 B
PHP
Raw Normal View History

2011-10-30 12:03:29 +01:00
<?php
class PHPParser_Node_Scalar_TraitConst extends PHPParser_Node_Scalar
{
/**
* Constructs a __TRAIT__ const node
*
* @param array $attributes Additional attributes
2011-10-30 12:03:29 +01:00
*/
public function __construct(array $attributes = array()) {
parent::__construct(array(), $attributes);
2011-10-30 12:03:29 +01:00
}
}