wikipoints/models/WayPoints.php

18 lines
217 B
PHP

<?php
class WayPoints extends Model
{
function __construct($fromArray = array())
{
$this->_tableName_ = 'wayPoints';
parent::__construct($fromArray);
}
static function model()
{
return new self();
}
}