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-02-24 16:01:32 -06:00

21 lines
No EOL
365 B
PHP

<?php
namespace AroMVC\Models;
use \AroMVC\Core\Model;
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");
}
}