| 1 | <?php declare(strict_types=1); |
||
| 29 | class FileExecutor implements ExecutorInterface |
||
| 30 | { |
||
| 31 | /** |
||
| 32 | * @var FilesystemInterface |
||
| 33 | */ |
||
| 34 | private $filesystem; |
||
| 35 | |||
| 36 | public function __construct(FilesystemInterface $filesystem) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | public function execute(Isolate $isolate, Context $context, string $value): Value |
||
| 54 | |||
| 55 | } |
||
| 56 |