catchAdmin/catch/cms/tables/UsedAt.php
2021-05-22 11:02:45 +08:00

21 lines
374 B
PHP

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