Core/Application/Models/model.table.php

13 lines
235 B
PHP
Raw Normal View History

2015-09-06 13:42:57 +00:00
<?php
namespace Model;
use \FuzeWorks\Model;
class Table extends Model{
public function __construct(){
$this->setType('core/databaseutils', 'Model');
$this->fields = '*';
$this->table = 'table';
}
}