mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
19 lines
406 B
PHP
19 lines
406 B
PHP
|
<?php
|
||
|
|
||
|
namespace Xentral\Widgets\DataTable\Feature;
|
||
|
|
||
|
use Xentral\Widgets\DataTable\DataTableInterface;
|
||
|
use Xentral\Widgets\DataTable\Exception\DataTableExceptionInterface;
|
||
|
|
||
|
interface DataTableFeatureInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param DataTableInterface $table
|
||
|
*
|
||
|
* @throws DataTableExceptionInterface
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function modifyTable(DataTableInterface $table);
|
||
|
}
|