Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class SecurityCenterRuntime implements RuntimeExtensionInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var HtmlFilterApiInterface |
||
23 | */ |
||
24 | private $htmlFilterApi; |
||
25 | |||
26 | public function __construct(HtmlFilterApiInterface $htmlFilterApi) |
||
27 | { |
||
28 | $this->htmlFilterApi = $htmlFilterApi; |
||
29 | } |
||
30 | |||
31 | public function safeHtml(string $string): string |
||
34 | } |
||
35 | } |
||
36 |