aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/EventListener
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-04-13 09:43:14 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-04-13 09:43:14 +0200
commitf2e5fdc3666a2a6525b4202ab48df05efeebaf5c (patch)
treef559474e248a33c472fe0b260641866be5c0def3 /src/Wallabag/CoreBundle/EventListener
parenta417b869237763ee115982d6367a82aa6174d74e (diff)
parent86732aa01cf0ad0fb5279f38ce75a9bedbbb66e1 (diff)
downloadwallabag-f2e5fdc3666a2a6525b4202ab48df05efeebaf5c.tar.gz
wallabag-f2e5fdc3666a2a6525b4202ab48df05efeebaf5c.tar.zst
wallabag-f2e5fdc3666a2a6525b4202ab48df05efeebaf5c.zip
Merge pull request #1916 from wallabag/cleanup
Convert array + phpDoc
Diffstat (limited to 'src/Wallabag/CoreBundle/EventListener')
-rw-r--r--src/Wallabag/CoreBundle/EventListener/LocaleListener.php6
-rw-r--r--src/Wallabag/CoreBundle/EventListener/RegistrationConfirmedListener.php4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/Wallabag/CoreBundle/EventListener/LocaleListener.php b/src/Wallabag/CoreBundle/EventListener/LocaleListener.php
index 05deac0a..a1c7e5ab 100644
--- a/src/Wallabag/CoreBundle/EventListener/LocaleListener.php
+++ b/src/Wallabag/CoreBundle/EventListener/LocaleListener.php
@@ -36,9 +36,9 @@ class LocaleListener implements EventSubscriberInterface
36 36
37 public static function getSubscribedEvents() 37 public static function getSubscribedEvents()
38 { 38 {
39 return array( 39 return [
40 // must be registered before the default Locale listener 40 // must be registered before the default Locale listener
41 KernelEvents::REQUEST => array(array('onKernelRequest', 17)), 41 KernelEvents::REQUEST => [['onKernelRequest', 17]],
42 ); 42 ];
43 } 43 }
44} 44}
diff --git a/src/Wallabag/CoreBundle/EventListener/RegistrationConfirmedListener.php b/src/Wallabag/CoreBundle/EventListener/RegistrationConfirmedListener.php
index 1c9160d5..10586126 100644
--- a/src/Wallabag/CoreBundle/EventListener/RegistrationConfirmedListener.php
+++ b/src/Wallabag/CoreBundle/EventListener/RegistrationConfirmedListener.php
@@ -28,9 +28,9 @@ class RegistrationConfirmedListener implements EventSubscriberInterface
28 28
29 public static function getSubscribedEvents() 29 public static function getSubscribedEvents()
30 { 30 {
31 return array( 31 return [
32 FOSUserEvents::REGISTRATION_CONFIRMED => 'authenticate', 32 FOSUserEvents::REGISTRATION_CONFIRMED => 'authenticate',
33 ); 33 ];
34 } 34 }
35 35
36 public function authenticate(FilterUserResponseEvent $event, $eventName = null, EventDispatcherInterface $eventDispatcher = null) 36 public function authenticate(FilterUserResponseEvent $event, $eventName = null, EventDispatcherInterface $eventDispatcher = null)