also remove the legacy edit_base.LEGACY.php file All previous includes/table_arrays load via include are now moved to a class system so we have all implemented in one folder and can easy update and add unit tests to it.
17 lines
238 B
PHP
17 lines
238 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace CoreLibs\Output\Form;
|
|
|
|
interface TableArraysInterface
|
|
{
|
|
/**
|
|
* setTableArray interface, set the table array
|
|
* @return array<mixed>
|
|
*/
|
|
public function setTableArray(): array;
|
|
}
|
|
|
|
// __END__
|