the whole shebang
This commit is contained in:
22
vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Static.php
vendored
Normal file
22
vendor/nikic/php-parser/lib/PHPParser/Node/Stmt/Static.php
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @property PHPParser_Node_Stmt_StaticVar[] $vars Variable definitions
|
||||
*/
|
||||
class PHPParser_Node_Stmt_Static extends PHPParser_Node_Stmt
|
||||
{
|
||||
/**
|
||||
* Constructs a static variables list node.
|
||||
*
|
||||
* @param PHPParser_Node_Stmt_StaticVar[] $vars Variable definitions
|
||||
* @param array $attributes Additional attributes
|
||||
*/
|
||||
public function __construct(array $vars, array $attributes = array()) {
|
||||
parent::__construct(
|
||||
array(
|
||||
'vars' => $vars,
|
||||
),
|
||||
$attributes
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user