ListTable.php 213 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php namespace AC; interface ListTable { public function get_column_value(string $column, int $id): string; public function get_total_items(): int; public function render_row(int $id): string; }