您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TestBusiness.php 357B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: robin
  5. * Date: 9/27/15
  6. * Time: 5:01 PM
  7. */
  8. require_once("../vendor/autoload.php");
  9. require_once("TestDataAccess.php");
  10. class TestBusiness extends \Luticate\Utils\LuBusiness
  11. {
  12. protected static function getDataAccess()
  13. {
  14. return new TestDataAccess();
  15. }
  16. }
  17. var_dump(TestBusiness::getById(42));