mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-12-19 01:31:52 +00:00
11 lines
162 B
PHP
11 lines
162 B
PHP
|
<?php
|
||
|
|
||
|
class ALRow {
|
||
|
public $name;
|
||
|
public $items;
|
||
|
|
||
|
function __construct( $name );
|
||
|
function addItem( $item, $next_item_label = null );
|
||
|
function toString();
|
||
|
}
|