| Total Complexity | 2 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 10 | ||
| Bugs | 0 | Features | 2 |
| 1 | <?php |
||
| 13 | class SandboxView extends View |
||
| 14 | { |
||
| 15 | // Public Properties |
||
| 16 | // ========================================================================= |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var SecurityPolicyInterface|null The security policy to use for the SandboxView |
||
| 20 | */ |
||
| 21 | public ?SecurityPolicyInterface $securityPolicy = null; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var WebSandboxErrorHandler|ConsoleSandboxErrorHandler|null The error handler to use for the SandboxView |
||
| 25 | */ |
||
| 26 | public WebSandboxErrorHandler|ConsoleSandboxErrorHandler|null $sandboxErrorHandler = null; |
||
| 27 | |||
| 28 | // Public Methods |
||
| 29 | // ========================================================================= |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @inheritDoc |
||
| 33 | */ |
||
| 34 | public function init(): void |
||
| 44 |