diff --git a/src/Core/Security.php b/src/Core/Security.php index 95aed02a22..1f79ded213 100644 --- a/src/Core/Security.php +++ b/src/Core/Security.php @@ -33,6 +33,12 @@ namespace App\Core; use HtmlSanitizer\SanitizerInterface; use Symfony\Component\Security\Core\Security as SSecurity; +/** + * Forwards method calls to either Symfony\Component\Security\Core\Security or + * HtmlSanitizer\SanitizerInterface, calling the first existing method, in that order + * + * @codeCoverageIgnore + */ abstract class Security { private static ?SSecurity $security;