| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| 1 | <?php |
||
| 16 | 1 | protected function callAsync(string $function, ...$args) |
|
| 17 | { |
||
| 18 | 1 | $classChunks = explode('\\', get_class($this)); |
|
| 19 | 1 | $class = array_pop($classChunks); |
|
| 20 | 1 | return $this->getTransport() |
|
| 21 | 1 | ->getHydrator() |
|
| 22 | 1 | ->buildAsyncFromSync($class, $this) |
|
| 23 | 1 | ->$function(...$args); |
|
| 24 | } |
||
| 25 | |||
| 39 |