1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-26 18:21:02 +00:00

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,6 +1,6 @@
<?php
namespace Wallabag\ImportBundle\Consumer;
namespace Wallabag\CoreBundle\Consumer;
use OldSound\RabbitMqBundle\RabbitMq\ConsumerInterface;
use PhpAmqpLib\Message\AMQPMessage;

View file

@ -1,6 +1,6 @@
<?php
namespace Wallabag\ImportBundle\Consumer;
namespace Wallabag\CoreBundle\Consumer;
use Doctrine\ORM\EntityManagerInterface;
use Psr\Log\LoggerInterface;

View file

@ -1,6 +1,6 @@
<?php
namespace Wallabag\ImportBundle\Consumer;
namespace Wallabag\CoreBundle\Consumer;
use OldSound\RabbitMqBundle\RabbitMq\Consumer;

View file

@ -1,6 +1,6 @@
<?php
namespace Wallabag\ImportBundle\Consumer;
namespace Wallabag\CoreBundle\Consumer;
use Simpleue\Job\Job;

View file

@ -6,8 +6,8 @@ use Craue\ConfigBundle\Util\Config;
use Predis\Client;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface;
use Wallabag\CoreBundle\Consumer\RabbitMQConsumerTotalProxy;
use Wallabag\CoreBundle\Controller\AbstractController;
use Wallabag\ImportBundle\Consumer\RabbitMQConsumerTotalProxy;
use Wallabag\ImportBundle\Import\ImportChain;
class ImportController extends AbstractController