| 1 | <?php declare(strict_types=1); |
||
| 27 | class ModulesExecutor implements ExecutorInterface |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * @var WrapperInterface |
||
| 31 | */ |
||
| 32 | private $wrapper; |
||
| 33 | /** |
||
| 34 | * @var FunctionObject |
||
| 35 | */ |
||
| 36 | private $require; |
||
| 37 | |||
| 38 | public function __construct(WrapperInterface $wrapper, FunctionObject $require) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * {@inheritdoc} |
||
| 46 | */ |
||
| 47 | public function execute(Isolate $isolate, Context $context, string $value): Value |
||
| 53 | } |
||
| 54 |