vendor/sulu/form-bundle/Csrf/DisabledCsrfTokenManager.php line 20
<?php/** This file is part of Sulu.** (c) Sulu GmbH** This source file is subject to the MIT license that is bundled* with this source code in the file LICENSE.*/namespace Sulu\Bundle\FormBundle\Csrf;use Symfony\Component\Security\Csrf\CsrfToken;use Symfony\Component\Security\Csrf\CsrfTokenManagerInterface;/*** @final*/class DisabledCsrfTokenManager implements CsrfTokenManagerInterface{/*** @var CsrfTokenManagerInterface*/private $csrfTokenManager;public function __construct(CsrfTokenManagerInterface $csrfTokenManager){$this->csrfTokenManager = $csrfTokenManager;}/*** @param string $tokenId*/public function refreshToken($tokenId): CsrfToken{return $this->csrfTokenManager->refreshToken($tokenId);}/*** @param string $tokenId*/public function removeToken($tokenId): ?string{return $this->csrfTokenManager->removeToken($tokenId);}public function isTokenValid(CsrfToken $token): bool{return $this->csrfTokenManager->isTokenValid($token);}/*** @param string $tokenId*/public function getToken($tokenId): CsrfToken{return new CsrfToken('', null);}}