| Total Complexity | 2 | 
| Total Lines | 12 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php  | 
            ||
| 10 | trait MagicCallTrait  | 
            ||
| 11 | { | 
            ||
| 12 | public function __call(string $name, array $arguments)  | 
            ||
| 13 |     { | 
            ||
| 14 | return Resolver::resolve(static::$__container_proxy_alias, $this->__container_proxy_context)  | 
            ||
| 15 | ->$name(...$arguments);  | 
            ||
| 16 | }  | 
            ||
| 17 | |||
| 18 | public static function __callStatic(string $name, array $arguments)  | 
            ||
| 22 | }  | 
            ||
| 23 | }  | 
            ||
| 24 |