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