aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/UserBundle/EventListener/CreateConfigListener.php
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2017-06-01 10:29:32 +0200
committerGitHub <noreply@github.com>2017-06-01 10:29:32 +0200
commit5d03e2d1a58d7961aeb3b93dbd864731719af921 (patch)
tree702aa580c60c788ee51ace0ed79409491854c825 /src/Wallabag/UserBundle/EventListener/CreateConfigListener.php
parent2a0eec07a5630401a9ceb7add65604f79238f10c (diff)
parent3a6af6c580b686593045a8f0cfbfc478aa93943c (diff)
downloadwallabag-5d03e2d1a58d7961aeb3b93dbd864731719af921.tar.gz
wallabag-5d03e2d1a58d7961aeb3b93dbd864731719af921.tar.zst
wallabag-5d03e2d1a58d7961aeb3b93dbd864731719af921.zip
Merge pull request #3172 from wallabag/more-scruti
More Scrutinizer issues fixed
Diffstat (limited to 'src/Wallabag/UserBundle/EventListener/CreateConfigListener.php')
-rw-r--r--src/Wallabag/UserBundle/EventListener/CreateConfigListener.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Wallabag/UserBundle/EventListener/CreateConfigListener.php b/src/Wallabag/UserBundle/EventListener/CreateConfigListener.php
index 0bdd1cae..e4d55c19 100644
--- a/src/Wallabag/UserBundle/EventListener/CreateConfigListener.php
+++ b/src/Wallabag/UserBundle/EventListener/CreateConfigListener.php
@@ -5,7 +5,6 @@ namespace Wallabag\UserBundle\EventListener;
5use Doctrine\ORM\EntityManager; 5use Doctrine\ORM\EntityManager;
6use FOS\UserBundle\Event\UserEvent; 6use FOS\UserBundle\Event\UserEvent;
7use FOS\UserBundle\FOSUserEvents; 7use FOS\UserBundle\FOSUserEvents;
8use Symfony\Component\EventDispatcher\EventDispatcherInterface;
9use Symfony\Component\EventDispatcher\EventSubscriberInterface; 8use Symfony\Component\EventDispatcher\EventSubscriberInterface;
10use Wallabag\CoreBundle\Entity\Config; 9use Wallabag\CoreBundle\Entity\Config;
11 10
@@ -47,7 +46,7 @@ class CreateConfigListener implements EventSubscriberInterface
47 ]; 46 ];
48 } 47 }
49 48
50 public function createConfig(UserEvent $event, $eventName = null, EventDispatcherInterface $eventDispatcher = null) 49 public function createConfig(UserEvent $event)
51 { 50 {
52 $config = new Config($event->getUser()); 51 $config = new Config($event->getUser());
53 $config->setTheme($this->theme); 52 $config->setTheme($this->theme);