]> Raphaël G. Git Repositories - airbundle/commitdiff
Import anonymous token, a token required to validate an user's roles
authorRaphaël Gertz <git@rapsys.eu>
Thu, 29 Feb 2024 13:45:04 +0000 (14:45 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 29 Feb 2024 13:45:04 +0000 (14:45 +0100)
Token/AnonymousToken.php [new file with mode: 0644]

diff --git a/Token/AnonymousToken.php b/Token/AnonymousToken.php
new file mode 100644 (file)
index 0000000..b6d108a
--- /dev/null
@@ -0,0 +1,22 @@
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys AirBundle package.
+ *
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Rapsys\AirBundle\Token;
+
+use Symfony\Component\Security\Core\Authentication\Token\AbstractToken;
+
+/**
+ * Anonymous Token
+ *
+ * {@inheritdoc}
+ */
+class AnonymousToken extends AbstractToken {
+}