]> Raphaël G. Git Repositories - airbundle/blob - Token/AnonymousToken.php
Rename rapsysair:calendar2 command to rapsysair:calendar
[airbundle] / Token / AnonymousToken.php
1 <?php declare(strict_types=1);
2
3 /*
4 * This file is part of the Rapsys AirBundle package.
5 *
6 * (c) Raphaël Gertz <symfony@rapsys.eu>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12 namespace Rapsys\AirBundle\Token;
13
14 use Symfony\Component\Security\Core\Authentication\Token\AbstractToken;
15
16 /**
17 * Anonymous Token
18 *
19 * {@inheritdoc}
20 */
21 class AnonymousToken extends AbstractToken {
22 }