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