mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-12-01 01:36:21 +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
168 B
PHP
11 lines
168 B
PHP
<?php
|
|
|
|
class ALRow {
|
|
public $name;
|
|
public $items;
|
|
|
|
function __construct( $name ) {}
|
|
function addItem( $item, $next_item_label = null ) {}
|
|
function toString() {}
|
|
}
|