12 lines
196 B
PHP
12 lines
196 B
PHP
<?php
|
|
namespace Portal\Model;
|
|
|
|
use Common\Model\CommonModel;
|
|
|
|
class TermRelationshipsModel extends CommonModel {
|
|
|
|
protected function _before_write(&$data) {
|
|
parent::_before_write($data);
|
|
}
|
|
|
|
} |