13 lines
207 B
PHP
13 lines
207 B
PHP
![]() |
<?php
|
||
|
namespace catchAdmin\cms\tables\forms;
|
||
|
|
||
|
use catcher\library\form\FormFactory;
|
||
|
|
||
|
class Factory extends FormFactory
|
||
|
{
|
||
|
public static function from(): string
|
||
|
{
|
||
|
return __NAMESPACE__;
|
||
|
}
|
||
|
}
|