| 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 | public function __construct($value, array $attributes = array()) |
||
| 21 | |||
| 22 | //@codeCoverageIgnoreStart |
||
| 23 | /** |
||
| 24 | * @return array |
||
| 25 | */ |
||
| 26 | public function getSubNodeNames() |
||
| 30 | //@codeCoverageIgnoreEnd |
||
| 31 | } |
||
| 32 |