Total Complexity | 7 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Coverage | 92.31% |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | trait EagerLoaderMultiAccessor |
||
12 | { |
||
13 | 7 | public function __call($method, $arguments) |
|
21 | } |
||
22 | |||
23 | public $eagerLoadingCache = []; |
||
24 | |||
25 | 7 | public function addEagerRelation($relationName, $content) |
|
31 | } |
||
32 | |||
33 | /** |
||
34 | * must be called from |
||
35 | * |
||
36 | * @param string $method |
||
37 | * @param array $arguments |
||
38 | * @return Object|void Void when nothing found |
||
39 | */ |
||
40 | 7 | public function tryEagerLoadingRelation($method) |
|
49 |