catchAdmin/catch/cms/tables/ModelUsedFields.php

21 lines
392 B
PHP
Raw Normal View History

2021-05-22 11:02:45 +08:00
<?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');
}
}