2011-06-05 18:40:04 +02:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
class Label extends Stmt
|
2011-06-05 18:40:04 +02:00
|
|
|
{
|
2015-02-28 18:44:28 +01:00
|
|
|
/** @var string Name */
|
|
|
|
public $name;
|
|
|
|
|
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()) {
|
2015-05-02 22:17:34 +02:00
|
|
|
parent::__construct($attributes);
|
2015-02-28 18:44:28 +01:00
|
|
|
$this->name = $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSubNodeNames() {
|
|
|
|
return array('name');
|
2011-09-22 20:27:12 +02:00
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|