%PDF- %PDF-
| Direktori : /www/varak.net/paste.varak.net-5.6/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/ |
| Current File : /www/varak.net/paste.varak.net-5.6/vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Goto.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
);
}
}