ForeignTableModel.php 333 B

1234567891011121314151617
  1. <?php
  2. // Copyright 2019 Hackware SpA <human@hackware.cl>
  3. // "Hackware Web Services Core" is released under the MIT License terms.
  4. namespace Hawese\Tests;
  5. use Hawese\Core\TableModel;
  6. class ForeignTableModel extends TableModel
  7. {
  8. public static $table = 'foreigns';
  9. public static $attributes = [
  10. 'id' => [],
  11. ];
  12. }