mediawiki-extensions-Replac.../.phan/stubs/ALRow.php
Reedy bfc5d28789 Fix phan stubs
PHP Fatal error:  Non-abstract method ALItem::newFromPage() must contain body in ./extensions/ReplaceText/.phan/stubs/ALItem.php on line 9

Change-Id: I2f425be645f24dd6d02a9e98d71d487db132ac8b
2021-10-21 21:43:16 +01:00

11 lines
168 B
PHP

<?php
class ALRow {
public $name;
public $items;
function __construct( $name ) {}
function addItem( $item, $next_item_label = null ) {}
function toString() {}
}