You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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));