This repository has been archived on 2024-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
AroMVC/Models/State.php
2017-03-02 16:02:38 -06:00

22 lines
No EOL
400 B
PHP

<?php
namespace Fire\Models;
use \AroMVC\Base\Model;
use \AroMVC\Database\Database as db;
class State extends Model {
protected $id;
protected $name;
protected $companyId;
protected $company;
protected $municipalities;
protected function initialize() {
$this->addHook("company", function() {
});
$this->addAssociation("companyId", "cid");
}
}