2011-06-05 18:40:04 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property string $name Name
|
|
|
|
*/
|
|
|
|
class PHPParser_Node_Stmt_Label extends PHPParser_Node_Stmt
|
|
|
|
{
|
2011-09-22 20:27:12 +02:00
|
|
|
/**
|
|
|
|
* Constructs a label node.
|
|
|
|
*
|
2012-04-29 23:32:09 +02:00
|
|
|
* @param string $name Name
|
|
|
|
* @param array $attributes Additional attributes
|
2011-09-22 20:27:12 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct($name, array $attributes = array()) {
|
2011-09-22 20:27:12 +02:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'name' => $name,
|
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-09-22 20:27:12 +02:00
|
|
|
);
|
|
|
|
}
|
2011-06-05 18:40:04 +02:00
|
|
|
}
|