the whole shebang
This commit is contained in:
22
vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Continue.php
vendored
Normal file
22
vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Continue.php
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @property null|PHPParser_Node_Expr $num Number of loops to continue
|
||||
*/
|
||||
class PHPParser_Node_Stmt_Continue extends PHPParser_Node_Stmt
|
||||
{
|
||||
/**
|
||||
* Constructs a continue node.
|
||||
*
|
||||
* @param null|PHPParser_Node_Expr $num Number of loops to continue
|
||||
* @param array $attributes Additional attributes
|
||||
*/
|
||||
public function __construct(PHPParser_Node_Expr $num = null, array $attributes = array()) {
|
||||
parent::__construct(
|
||||
array(
|
||||
'num' => $num,
|
||||
),
|
||||
$attributes
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user