php-parser/lib/PHPParser/Node/Stmt/DeclareDeclare.php

25 lines
689 B
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
/**
* @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
* @param array $attributes Additional attributes
2011-10-21 16:51:37 +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,
),
$attributes
2011-10-21 16:51:37 +02:00
);
}
2011-06-05 18:40:04 +02:00
}