| Total Complexity | 2 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | trait InteractorProxyTrait |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Gets the possible proxies for the class. |
||
| 13 | * |
||
| 14 | * @return array |
||
| 15 | */ |
||
| 16 | protected abstract function getInteractorProxies(): array; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Dynamically access collection proxies. |
||
| 20 | * |
||
| 21 | * @param string $proxy |
||
| 22 | * @param mixed $args |
||
| 23 | * |
||
| 24 | * @return CollectionProxy |
||
| 25 | * |
||
| 26 | * @throws \Exception |
||
| 27 | */ |
||
| 28 | 13 | public function __call($proxy, $args = null) |
|
| 40 |