2011-06-05 18:40:04 +02:00
|
|
|
<?php
|
|
|
|
|
2011-09-23 18:53:11 +02:00
|
|
|
/**
|
|
|
|
* @property string $key Key
|
|
|
|
* @property PHPParser_Node_Expr $value Value
|
|
|
|
*/
|
2011-06-05 18:40:04 +02:00
|
|
|
class PHPParser_Node_Stmt_DeclareDeclare extends PHPParser_Node_Stmt
|
|
|
|
{
|
2011-10-21 16:51:37 +02:00
|
|
|
/**
|
|
|
|
* Constructs a declare key=>value pair node.
|
|
|
|
*
|
|
|
|
* @param string $key Key
|
|
|
|
* @param PHPParser_Node_Expr $value Value
|
2012-04-29 23:32:09 +02:00
|
|
|
* @param array $attributes Additional attributes
|
2011-10-21 16:51:37 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct($key, PHPParser_Node_Expr $value, array $attributes = array()) {
|
2011-10-21 16:51:37 +02:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'key' => $key,
|
|
|
|
'value' => $value,
|
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-10-21 16:51:37 +02:00
|
|
|
);
|
|
|
|
}
|
2011-06-05 18:40:04 +02:00
|
|
|
}
|