Content.php 1016 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace catcher\generate\template;
  3. trait Content
  4. {
  5. public function header()
  6. {
  7. $year = date('Y', time());
  8. return <<<TMP
  9. <?php
  10. // +----------------------------------------------------------------------
  11. // | CatchAdmin [Just Like ~ ]
  12. // +----------------------------------------------------------------------
  13. // | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
  14. // +----------------------------------------------------------------------
  15. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  16. // +----------------------------------------------------------------------
  17. // | Author: JaguarJack [ njphper@gmail.com ]
  18. // +----------------------------------------------------------------------
  19. TMP;
  20. }
  21. /**
  22. * set namespace
  23. *
  24. * @time 2020年04月27日
  25. * @param $namespace
  26. * @return string
  27. */
  28. public function nameSpace($namespace)
  29. {
  30. return <<<TMP
  31. namespace {$namespace};
  32. TMP;
  33. }
  34. }