Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
32 | public function execute(Isolate $isolate, Context $context, string $value): Value |
||
33 | { |
||
34 | $source = new StringValue($isolate, $value); |
||
35 | $origin = new ScriptOrigin('<execute>'); |
||
36 | $script = new Script($context, $source, $origin); |
||
37 | |||
38 | return $script->run($context); |
||
39 | } |
||
40 | } |
||
41 |