Files
development/4dev/deprecated/CoreLibs/Output/TableArraysInterface.php
2023-02-16 17:13:30 +09:00

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__