Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class Subm extends Model |
||
24 | { |
||
25 | /** |
||
26 | * The "type" of the auto-incrementing ID. |
||
27 | * |
||
28 | * @var string |
||
29 | */ |
||
30 | protected $keyType = 'integer'; |
||
31 | |||
32 | /** |
||
33 | * @var array |
||
34 | */ |
||
35 | protected $fillable = ['group', 'gid', 'name', 'addr_id', 'rin', 'rfn', 'lang', 'phon', 'email', 'fax', 'www', 'created_at', 'updated_at']; |
||
36 | |||
37 | public function addr() |
||
42 |