to.class.php 503 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * The block setter class file of zin lib.
  4. *
  5. * @copyright Copyright 2023 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
  6. * @author Hao Sun <sunhao@easycorp.ltd>
  7. * @package zin
  8. * @version $Id
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. require_once __DIR__ . DS . 'zin.func.php';
  13. class to
  14. {
  15. public static function __callStatic($name, $args)
  16. {
  17. return to($name, $args);
  18. }
  19. }