Move User event listeners to Core

This commit is contained in:
Yassine Guedidi
2023-12-30 23:54:25 +01:00
parent d8f2d3c7ee
commit 615adc81ff
7 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Wallabag\UserBundle\EventListener;
namespace Tests\Wallabag\CoreBundle\Event\Listener;
use Monolog\Handler\TestHandler;
use Monolog\Logger;
@ -12,7 +12,7 @@ use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\Security\Core\AuthenticationEvents;
use Symfony\Component\Security\Core\Event\AuthenticationFailureEvent;
use Symfony\Component\Security\Core\Exception\AuthenticationException;
use Wallabag\UserBundle\EventListener\AuthenticationFailureListener;
use Wallabag\CoreBundle\Event\Listener\AuthenticationFailureListener;
class AuthenticationFailureListenerTest extends TestCase
{

View File

@ -1,6 +1,6 @@
<?php
namespace Tests\Wallabag\UserBundle\EventListener;
namespace Tests\Wallabag\CoreBundle\Event\Listener;
use Doctrine\ORM\EntityManager;
use FOS\UserBundle\Event\FilterUserResponseEvent;
@ -13,7 +13,7 @@ use Symfony\Component\HttpFoundation\Session\Session;
use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage;
use Wallabag\CoreBundle\Entity\Config;
use Wallabag\CoreBundle\Entity\User;
use Wallabag\UserBundle\EventListener\CreateConfigListener;
use Wallabag\CoreBundle\Event\Listener\CreateConfigListener;
class CreateConfigListenerTest extends TestCase
{