summaryrefslogtreecommitdiffstats
path: root/Authentication/RememberMe/PersistentTokenInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'Authentication/RememberMe/PersistentTokenInterface.php')
-rw-r--r--Authentication/RememberMe/PersistentTokenInterface.php45
1 files changed, 0 insertions, 45 deletions
diff --git a/Authentication/RememberMe/PersistentTokenInterface.php b/Authentication/RememberMe/PersistentTokenInterface.php
deleted file mode 100644
index 5525a34..0000000
--- a/Authentication/RememberMe/PersistentTokenInterface.php
+++ /dev/null
@@ -1,45 +0,0 @@
-<?php
-
-namespace Symfony\Component\Security\Authentication\RememberMe;
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-/**
- * Interface to be implemented by persistent token classes (such as
- * Doctrine entities representing a remember-me token)
- *
- * @author Johannes M. Schmitt <schmittjoh@gmail.com>
- */
-interface PersistentTokenInterface
-{
- /**
- * Returns the username
- * @return string
- */
- function getUsername();
-
- /**
- * Returns the series
- * @return string
- */
- function getSeries();
-
- /**
- * Returns the token value
- * @return string
- */
- function getTokenValue();
-
- /**
- * Returns the last time the cookie was used
- * @return \DateTime
- */
- function getLastUsed();
-} \ No newline at end of file