mediawiki-extensions-Replac.../.phan/stubs/ALRow.php
Mark A. Hershberger b15a7352d3
Provide phan with stubs for AL* classes
Bug: T279202
Change-Id: Ia1e667935c2553a1bff999516e3ad349d4923e21
2021-04-07 22:14:44 -04:00

11 lines
162 B
PHP

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