2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2011-06-05 18:40:04 +02:00
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
|
|
|
|
class Namespace_ extends Node\Stmt
|
2011-06-05 18:40:04 +02:00
|
|
|
{
|
2017-09-26 18:42:52 +02:00
|
|
|
/* For use in the "kind" attribute */
|
|
|
|
const KIND_SEMICOLON = 1;
|
|
|
|
const KIND_BRACED = 2;
|
|
|
|
|
2015-02-28 18:44:28 +01:00
|
|
|
/** @var null|Node\Name Name */
|
|
|
|
public $name;
|
2017-01-19 22:46:28 +01:00
|
|
|
/** @var Node\Stmt[] Statements */
|
2015-02-28 18:44:28 +01:00
|
|
|
public $stmts;
|
|
|
|
|
2011-10-21 16:51:37 +02:00
|
|
|
/**
|
|
|
|
* Constructs a namespace node.
|
|
|
|
*
|
2017-01-19 22:46:28 +01:00
|
|
|
* @param null|Node\Name $name Name
|
|
|
|
* @param null|Node\Stmt[] $stmts Statements
|
|
|
|
* @param array $attributes Additional attributes
|
2011-10-21 16:51:37 +02:00
|
|
|
*/
|
2017-08-13 14:06:08 +02:00
|
|
|
public function __construct(Node\Name $name = null, $stmts = [], array $attributes = []) {
|
2015-05-02 22:17:34 +02:00
|
|
|
parent::__construct($attributes);
|
2015-02-28 18:44:28 +01:00
|
|
|
$this->name = $name;
|
|
|
|
$this->stmts = $stmts;
|
2011-06-26 18:40:23 +02:00
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getSubNodeNames() : array {
|
2017-08-13 14:06:08 +02:00
|
|
|
return ['name', 'stmts'];
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|
2017-11-12 21:25:57 +01:00
|
|
|
|
|
|
|
function getType() : string {
|
|
|
|
return 'Stmt_Namespace';
|
|
|
|
}
|
2014-01-23 13:33:02 +01:00
|
|
|
}
|