1234567891011121314151617 |
- <?php
- // Copyright 2019 Hackware SpA <human@hackware.cl>
- // "Hackware Web Services Core" is released under the MIT License terms.
- namespace Hawese\Tests;
- use Hawese\Core\TableModel;
- class ForeignTableModel extends TableModel
- {
- public static $table = 'foreigns';
- public static $attributes = [
- 'id' => [],
- ];
- }
|