mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-04 02:17:56 +01:00
17 lines
351 B
PHP
17 lines
351 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Scalar;
|
|
|
|
use PhpParser\Node\Scalar;
|
|
|
|
abstract class MagicConst extends Scalar
|
|
{
|
|
/**
|
|
* Constructs a magic constant node.
|
|
*
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(array $attributes = array()) {
|
|
parent::__construct(array(), $attributes);
|
|
}
|
|
} |