15 lines
242 B
PHP
15 lines
242 B
PHP
![]() |
<?php
|
||
|
namespace catchAdmin\cms\tables\forms;
|
||
|
|
||
|
use catcher\library\form\Form;
|
||
|
|
||
|
class Comments extends Form
|
||
|
{
|
||
|
public function fields(): array
|
||
|
{
|
||
|
// TODO: Implement fields() method.
|
||
|
return [
|
||
|
|
||
|
];
|
||
|
}
|
||
|
}
|