ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
Table.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\LegalDocuments;
22 
23 interface Table
24 {
28  public function columns(): array;
29  public function config(TableConfig $config): void;
30  public function name(): string;
31 
35  public function rows(TableSelection $select): array;
36 }
rows(TableSelection $select)
config(TableConfig $config)