该仓库已于 2025-08-22 归档。您可以查看文件或克隆它,但不能推送、创建工单或合并请求。
文件
dumbo/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Goto.php
2014-11-25 16:42:40 +01:00

22 行
502 B
PHP

<?php
/**
* @property string $name Name of label to jump to
*/
class PHPParser_Node_Stmt_Goto extends PHPParser_Node_Stmt
{
/**
* 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
);
}
}