1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 09:47:59 +01:00
PHP-Parser/lib/PHPParser/Node/Stmt/Label.php

22 lines
464 B
PHP
Raw Normal View History

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