15 lines
240 B
PHP
Raw Normal View History

2021-05-22 11:02:45 +08:00
<?php
namespace catchAdmin\cms\tables\forms;
use catcher\library\form\Form;
class UsedAt extends Form
{
public function fields(): array
{
// TODO: Implement fields() method.
return [
];
}
}