aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-01-22 08:01:32 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-01-22 08:01:32 +0100
commit23afdf3a70a5035cb58b76138a8627701ba55273 (patch)
tree87a1f573e7b405f34588a91f87b9196810cdaa7a
parenta3cac44c78a1d798e3282daa6b8c3e59e8ebc690 (diff)
downloadwallabag-23afdf3a70a5035cb58b76138a8627701ba55273.tar.gz
wallabag-23afdf3a70a5035cb58b76138a8627701ba55273.tar.zst
wallabag-23afdf3a70a5035cb58b76138a8627701ba55273.zip
CS
-rw-r--r--src/Wallabag/CoreBundle/Tools/Utils.php2
-rw-r--r--src/Wallabag/UserBundle/EventListener/PasswordResettingListener.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Wallabag/CoreBundle/Tools/Utils.php b/src/Wallabag/CoreBundle/Tools/Utils.php
index 71cbc490..0c783110 100644
--- a/src/Wallabag/CoreBundle/Tools/Utils.php
+++ b/src/Wallabag/CoreBundle/Tools/Utils.php
@@ -7,7 +7,7 @@ class Utils
7 /** 7 /**
8 * Generate a token used for RSS. 8 * Generate a token used for RSS.
9 * 9 *
10 * @param integer $length Length of the token 10 * @param int $length Length of the token
11 * 11 *
12 * @return string 12 * @return string
13 */ 13 */
diff --git a/src/Wallabag/UserBundle/EventListener/PasswordResettingListener.php b/src/Wallabag/UserBundle/EventListener/PasswordResettingListener.php
index 2fdcb441..128e85a4 100644
--- a/src/Wallabag/UserBundle/EventListener/PasswordResettingListener.php
+++ b/src/Wallabag/UserBundle/EventListener/PasswordResettingListener.php
@@ -9,7 +9,7 @@ use Symfony\Component\HttpFoundation\RedirectResponse;
9use Symfony\Component\Routing\Generator\UrlGeneratorInterface; 9use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
10 10
11/** 11/**
12 * Listener responsible to change the redirection at the end of the password resetting 12 * Listener responsible to change the redirection at the end of the password resetting.
13 * 13 *
14 * @see http://symfony.com/doc/current/bundles/FOSUserBundle/controller_events.html 14 * @see http://symfony.com/doc/current/bundles/FOSUserBundle/controller_events.html
15 */ 15 */
@@ -23,7 +23,7 @@ class PasswordResettingListener implements EventSubscriberInterface
23 } 23 }
24 24
25 /** 25 /**
26 * {@inheritDoc} 26 * {@inheritdoc}
27 */ 27 */
28 public static function getSubscribedEvents() 28 public static function getSubscribedEvents()
29 { 29 {