1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 18:28:25 +01:00
PHP-Parser/lib/PhpParser/Node/Stmt/Label.php

26 lines
487 B
PHP

<?php
namespace PhpParser\Node\Stmt;
use PhpParser\Node\Stmt;
/**
* @property string $name Name
*/
class Label extends 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
);
}
}