mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 12:35:05 +01:00
a6846e3b71
The parser will now always generate Identifier nodes (for non-namespaced identifiers). This obsoletes the useIdentifierNodes parser option. Node constructors still accepts strings and will implicitly create an Identifier wrapper. Identifier implement __toString(), so that outside of strict-mode many things continue to work without changes.
31 lines
785 B
PHP
31 lines
785 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node;
|
|
|
|
class DeclareDeclare extends Node\Stmt
|
|
{
|
|
/** @var Node\Identifier Key */
|
|
public $key;
|
|
/** @var Node\Expr Value */
|
|
public $value;
|
|
|
|
/**
|
|
* Constructs a declare key=>value pair node.
|
|
*
|
|
* @param string|Node\Identifier $key Key
|
|
* @param Node\Expr $value Value
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct($key, Node\Expr $value, array $attributes = array()) {
|
|
parent::__construct($attributes);
|
|
$this->key = \is_string($key) ? new Node\Identifier($key) : $key;
|
|
$this->value = $value;
|
|
}
|
|
|
|
public function getSubNodeNames() {
|
|
return array('key', 'value');
|
|
}
|
|
}
|