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.

LuticateGroupsDataAccess.php 348B

123456789101112131415
  1. <?php
  2. namespace Luticate\Auth\DataAccess;
  3. use Luticate\Utils\LuDataAccess;
  4. use Luticate\Auth\DataAccess\Models\LuticateGroups;
  5. use Luticate\Auth\DBO\LuticateGroupsDbo;
  6. class LuticateGroupsDataAccess extends LuDataAccess {
  7. public function __construct()
  8. {
  9. parent::__construct();
  10. $this->model = new LuticateGroups();
  11. }
  12. }