Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php /** RelationsMicro */ |
||
26 | public function add($name, $model, $isMany = false, array $on = [], $where = '', array $params = [], $limit = 0) |
||
27 | { |
||
28 | $this->data[$name] = [ |
||
29 | 'IsMany' => $isMany, |
||
30 | 'Model' => $model, |
||
31 | 'On' => $on, |
||
32 | 'Where' => $where, |
||
33 | 'Params' => $params, |
||
34 | 'Limit' => $limit |
||
35 | ]; |
||
36 | } |
||
37 | |||
46 |