21 lines
392 B
PHP
21 lines
392 B
PHP
<?php
|
|
namespace catchAdmin\cms\tables;
|
|
|
|
use catcher\CatchTable;
|
|
use catchAdmin\cms\tables\forms\Factory;
|
|
|
|
class ModelUsedFields extends CatchTable
|
|
{
|
|
public function table()
|
|
{
|
|
// TODO: Implement table() method.
|
|
return [];
|
|
}
|
|
|
|
protected function form()
|
|
{
|
|
// TODO: Implement form() method.
|
|
return Factory::create('ModelUsedFields');
|
|
}
|
|
|
|
} |