<?php
namespace AroMVC\Models;
use \AroMVC\Core\Model;
class State extends Model {
protected static $table = "State";
protected $id;
protected $name;
protected $companyId;
protected $company;
protected $municipalities;
protected function initialize() {
$this->addHook("company", function() {
});
$this->addAssociation("companyId", "cid");
}