Move Import consumers to Core

This commit is contained in:
Yassine Guedidi
2023-12-31 10:03:14 +01:00
parent b6b067c969
commit ed4b20f27f
10 changed files with 35 additions and 35 deletions

View File

@ -1,15 +1,15 @@
<?php
namespace Tests\Wallabag\ImportBundle\Consumer;
namespace Tests\Wallabag\CoreBundle\Consumer;
use Doctrine\ORM\EntityManager;
use PhpAmqpLib\Message\AMQPMessage;
use PHPUnit\Framework\TestCase;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Wallabag\CoreBundle\Consumer\AMQPEntryConsumer;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\User;
use Wallabag\CoreBundle\Repository\UserRepository;
use Wallabag\ImportBundle\Consumer\AMQPEntryConsumer;
use Wallabag\ImportBundle\Import\AbstractImport;
class AMQPEntryConsumerTest extends TestCase

View File

@ -1,14 +1,14 @@
<?php
namespace Tests\Wallabag\ImportBundle\Consumer;
namespace Tests\Wallabag\CoreBundle\Consumer;
use Doctrine\ORM\EntityManager;
use PHPUnit\Framework\TestCase;
use Symfony\Component\EventDispatcher\EventDispatcher;
use Wallabag\CoreBundle\Consumer\RedisEntryConsumer;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Entity\User;
use Wallabag\CoreBundle\Repository\UserRepository;
use Wallabag\ImportBundle\Consumer\RedisEntryConsumer;
use Wallabag\ImportBundle\Import\AbstractImport;
class RedisEntryConsumerTest extends TestCase