wikipoints/ground/models/GoAway.php

18 lines
211 B
PHP

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