1 | <?php /** RelationsMicro */ |
||
17 | class Relations implements IRelations |
||
18 | { |
||
19 | /** @var array $data relations setup */ |
||
20 | protected $data; |
||
21 | |||
22 | |||
23 | /** |
||
24 | * @inheritdoc |
||
25 | */ |
||
26 | public function add($name, $model, $isMany = false, array $on = [], $where = '', array $params = [], $limit = 0) |
||
37 | |||
38 | /** |
||
39 | * @inheritdoc |
||
40 | */ |
||
41 | public function get($name) |
||
45 | } |
||
46 |