| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 1 | protected function callAsync(string $function, ...$args) |
|
| 25 | { |
||
| 26 | 1 | $classChunks = explode('\\', get_class($this)); |
|
| 27 | 1 | $class = array_pop($classChunks); |
|
| 28 | 1 | return $this->getTransport() |
|
| 29 | 1 | ->getHydrator() |
|
| 30 | 1 | ->buildAsyncFromSync($class, $this) |
|
| 31 | 1 | ->$function(...$args); |
|
| 32 | } |
||
| 33 | |||
| 56 |