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.

ImagesDataAccess.php 269B

1234567891011121314
  1. <?php
  2. namespace App\Http\DataAccess;
  3. use Luticate\Utils\LuDataAccess;
  4. use App\Http\DataAccess\Models\Images;
  5. use App\Http\DBO\ImagesDbo;
  6. class ImagesDataAccess extends LuDataAccess {
  7. protected static function getModel()
  8. {
  9. return new Images();
  10. }
  11. }