| 1 | <?php declare(strict_types=1); |
||
| 25 | class ColdExecutionContext implements ColdExecutionContextInterface |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * @var WrapperInterface |
||
| 29 | */ |
||
| 30 | private $wrapper; |
||
| 31 | /** |
||
| 32 | * @var RuntimeFunction |
||
| 33 | */ |
||
| 34 | private $runtime_function; |
||
| 35 | |||
| 36 | public function __construct(WrapperInterface $wrapper, RuntimeFunction $runtime_function) |
||
| 41 | |||
| 42 | public function getWrapper(): WrapperInterface |
||
| 46 | |||
| 47 | public function warm(FunctionCallbackInfo $args, FunctionSpecInterface $spec): ExecutionContextInterface |
||
| 51 | } |
||
| 52 |