| 1 | <?php |
||
| 5 | class Fake extends \PhpParser\Node\Scalar |
||
| 6 | { |
||
| 7 | /** @var mixed */ |
||
| 8 | public $value; |
||
| 9 | |||
| 10 | /** @var mixed */ |
||
| 11 | public $type; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Constructs a fake node. |
||
| 15 | * |
||
| 16 | * @param mixed $value Value of the Node |
||
| 17 | * @param mixed $type Type of the node |
||
| 18 | * @param array $attributes Additional attributes |
||
| 19 | */ |
||
| 20 | public function __construct($value, $type, array $attributes = array()) |
||
| 27 | |||
| 28 | //@codeCoverageIgnoreStart |
||
| 29 | /** |
||
| 30 | * @return array |
||
| 31 | */ |
||
| 32 | public function getSubNodeNames() |
||
| 36 | //@codeCoverageIgnoreEnd |
||
| 37 | } |
||
| 38 |