mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-12-04 19:18:12 +00:00
bfc5d28789
PHP Fatal error: Non-abstract method ALItem::newFromPage() must contain body in ./extensions/ReplaceText/.phan/stubs/ALItem.php on line 9 Change-Id: I2f425be645f24dd6d02a9e98d71d487db132ac8b
11 lines
203 B
PHP
11 lines
203 B
PHP
<?php
|
|
|
|
class ALTree {
|
|
public $sections;
|
|
|
|
function __construct() {}
|
|
function getSection( $section_header ) {}
|
|
function addSection( $section, $next_section_header = null ) {}
|
|
function toString() {}
|
|
}
|