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.

CommandTypesDataAccess.php 293B

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