php-parser/lib/PhpParser/Node/Stmt/Goto_.php

26 lines
526 B
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
namespace PhpParser\Node\Stmt;
use PhpParser\Node\Stmt;
2011-06-05 18:40:04 +02:00
/**
* @property string $name Name of label to jump to
2011-06-05 18:40:04 +02:00
*/
class Goto_ extends Stmt
2011-06-05 18:40:04 +02:00
{
/**
* Constructs a goto node.
*
* @param string $name Name of label to jump to
* @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
}