15 lines
242 B
PHP
Raw Normal View History

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