Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
55 | public function call(...$args) |
||
56 | { |
||
57 | $args_for_call = []; |
||
58 | foreach ($args as $arg) { |
||
59 | $args_for_call[] = $this->wrapper->wrap($this->context->getIsolate(), $this->context, $arg); |
||
60 | } |
||
61 | |||
62 | return $this->function_object->call($this->context, $this->recv, $args_for_call); |
||
63 | } |
||
64 | |||
73 |