24 lines
528 B
PHP
24 lines
528 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* The block setter class file of zin lib.
|
|
*
|
|
* @copyright Copyright 2023 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @author Hao Sun <sunhao@easycorp.ltd>
|
|
* @package zin
|
|
* @version $Id
|
|
* @link https://www.zentao.net
|
|
*/
|
|
|
|
namespace zin;
|
|
|
|
require_once __DIR__ . DS . 'zin.func.php';
|
|
|
|
class to
|
|
{
|
|
public static function __callStatic($name, $args)
|
|
{
|
|
return to($name, $args);
|
|
}
|
|
}
|