mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-11-30 17:34:14 +00:00
b15a7352d3
Bug: T279202 Change-Id: Ia1e667935c2553a1bff999516e3ad349d4923e21
11 lines
195 B
PHP
11 lines
195 B
PHP
<?php
|
|
|
|
class ALTree {
|
|
public $sections;
|
|
|
|
function __construct();
|
|
function getSection( $section_header );
|
|
function addSection( $section, $next_section_header = null );
|
|
function toString();
|
|
}
|