2011-06-05 18:40:04 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2011-08-11 08:13:01 +02:00
|
|
|
* @property PHPParser_Node_Expr $value Value
|
2011-09-02 19:49:46 +02:00
|
|
|
* @property null|PHPParser_Node_Expr $key Key
|
2011-08-11 08:13:01 +02:00
|
|
|
* @property bool $byRef Whether to assign by reference
|
2011-06-05 18:40:04 +02:00
|
|
|
*/
|
|
|
|
class PHPParser_Node_Expr_ArrayItem extends PHPParser_Node_Expr
|
|
|
|
{
|
2011-08-11 08:13:01 +02:00
|
|
|
/**
|
|
|
|
* Constructs an array item node.
|
|
|
|
*
|
|
|
|
* @param PHPParser_Node_Expr $value Value
|
2011-09-02 19:49:46 +02:00
|
|
|
* @param null|PHPParser_Node_Expr $key Key
|
2011-08-11 08:13:01 +02:00
|
|
|
* @param bool $byRef Whether to assign by reference
|
2012-04-29 23:32:09 +02:00
|
|
|
* @param array $attributes Additional attributes
|
2011-08-11 08:13:01 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct(PHPParser_Node_Expr $value, PHPParser_Node_Expr $key = null, $byRef = false, array $attributes = array()) {
|
2011-08-11 08:13:01 +02:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'key' => $key,
|
|
|
|
'value' => $value,
|
|
|
|
'byRef' => $byRef
|
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-08-11 08:13:01 +02:00
|
|
|
);
|
|
|
|
}
|
2011-06-05 18:40:04 +02:00
|
|
|
}
|