| 1 | <?php declare(strict_types=1); |
||
| 26 | class ModulesNativeExecutor implements ExecutorInterface |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * @var NativeRequireFunctionWrapperInterface |
||
| 30 | */ |
||
| 31 | private $require; |
||
| 32 | |||
| 33 | public function __construct(NativeRequireFunctionWrapperInterface $require) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritdoc} |
||
| 40 | */ |
||
| 41 | public function execute(Isolate $isolate, Context $context, string $value): Value |
||
| 47 | } |
||
| 48 |