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

23 lines
405 B
PHP
Raw Normal View History

2017-02-24 16:39:37 +00:00
<?php
namespace AroMVC\Models;
2017-02-24 22:01:32 +00:00
use \AroMVC\Core\Model;
2017-02-24 16:39:37 +00:00
2017-02-24 22:01:32 +00:00
class State extends Model {
2017-02-28 21:46:54 +00:00
protected static $table = "State";
2017-02-24 22:01:32 +00:00
protected $id;
protected $name;
protected $companyId;
protected $company;
protected $municipalities;
protected function initialize() {
$this->addHook("company", function() {
});
$this->addAssociation("companyId", "cid");
}
2017-02-24 16:39:37 +00:00
}