mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-03 09:47:59 +01:00
27 lines
542 B
PHP
27 lines
542 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Expr;
|
|
|
|
use PhpParser\Node\Name;
|
|
use PhpParser\Node\Expr;
|
|
|
|
/**
|
|
* @property Name $name Constant name
|
|
*/
|
|
class ConstFetch extends Expr
|
|
{
|
|
/**
|
|
* Constructs a const fetch node.
|
|
*
|
|
* @param Name $name Constant name
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct(Name $name, array $attributes = array()) {
|
|
parent::__construct(
|
|
array(
|
|
'name' => $name
|
|
),
|
|
$attributes
|
|
);
|
|
}
|
|
} |