2021-04-02 20:34:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class ALTree {
|
|
|
|
public $sections;
|
|
|
|
|
2021-10-21 20:36:55 +00:00
|
|
|
function __construct() {}
|
|
|
|
function getSection( $section_header ) {}
|
|
|
|
function addSection( $section, $next_section_header = null ) {}
|
|
|
|
function toString() {}
|
2021-04-02 20:34:01 +00:00
|
|
|
}
|