2011-05-27 18:20:44 +02:00
|
|
|
<?php
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
|
2011-05-29 12:20:47 +02:00
|
|
|
/**
|
2014-02-06 14:44:16 +01:00
|
|
|
* @property StaticVar[] $vars Variable definitions
|
2011-05-29 12:20:47 +02:00
|
|
|
*/
|
2014-02-06 14:44:16 +01:00
|
|
|
class Static_ extends Stmt
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2011-09-22 20:27:12 +02:00
|
|
|
/**
|
|
|
|
* Constructs a static variables list node.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @param StaticVar[] $vars Variable definitions
|
|
|
|
* @param array $attributes Additional attributes
|
2011-09-22 20:27:12 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct(array $vars, array $attributes = array()) {
|
2011-09-22 20:27:12 +02:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'vars' => $vars,
|
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-09-22 20:27:12 +02:00
|
|
|
);
|
|
|
|
}
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|