mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-12-01 01:36:21 +00:00
b15a7352d3
Bug: T279202 Change-Id: Ia1e667935c2553a1bff999516e3ad349d4923e21
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();
|
|
}
|