mediawiki-extensions-Replac.../.phan/stubs/ALRow.php

11 lines
162 B
PHP
Raw Normal View History

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