Spaces:
No application file
No application file
declare(strict_types=1); | |
namespace Mautic\UserBundle\Security; | |
use Symfony\Component\Security\Core\Authentication\Token\AbstractToken; | |
final class DummyToken extends AbstractToken | |
{ | |
public function getCredentials() | |
{ | |
return null; | |
} | |
} | |