1 | <?php |
||
5 | class Nil extends \PhpParser\Node\Scalar |
||
6 | { |
||
7 | /** @var null */ |
||
8 | public $value; |
||
9 | |||
10 | /** |
||
11 | * Constructs a boolean node. |
||
12 | * |
||
13 | * @param null $value |
||
14 | * @param array $attributes Additional attributes |
||
15 | */ |
||
16 | 9 | public function __construct($value = null, array $attributes = array()) |
|
17 | { |
||
18 | 9 | parent::__construct($attributes); |
|
19 | 9 | $this->value = $value; |
|
20 | 9 | } |
|
21 | |||
22 | //@codeCoverageIgnoreStart |
||
23 | public function getSubNodeNames() |
||
27 | //@codeCoverageIgnoreEnd |
||
28 | } |
||
29 |