TaoLer/extend/taoler/com/FormHelper.php
2022-11-20 21:56:09 +08:00

18 lines
326 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace taoler\com;
use think\Facade;
class FormHelper extends Facade
{
/**
* 获取当前Facade对应类名或者已经绑定的容器对象标识
* @access protected
* @return string
*/
protected static function getFacadeClass()
{
return 'taoler\com\FormHlp';
}
}