| 1 | <?php |
||
| 5 | class ASTArray |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var array $elements |
||
| 9 | */ |
||
| 10 | private $elements; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param array $elements |
||
| 14 | */ |
||
| 15 | public function __construct(array $elements = []) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return array |
||
| 22 | */ |
||
| 23 | public function getElements() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param array $elements |
||
| 30 | */ |
||
| 31 | public function setElements(array $elements) |
||
| 35 | |||
| 36 | public function addElement($element) |
||
| 40 | } |
||
| 41 |