diff options
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/ImportBundle/Consumer/AMQPEntryConsumer.php (renamed from src/Wallabag/ImportBundle/Consumer/AMPQEntryConsumer.php) | 2 | ||||
-rw-r--r-- | src/Wallabag/ImportBundle/Resources/config/rabbit.yml | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/Wallabag/ImportBundle/Consumer/AMPQEntryConsumer.php b/src/Wallabag/ImportBundle/Consumer/AMQPEntryConsumer.php index d95a011d..5aaa8c03 100644 --- a/src/Wallabag/ImportBundle/Consumer/AMPQEntryConsumer.php +++ b/src/Wallabag/ImportBundle/Consumer/AMQPEntryConsumer.php | |||
@@ -5,7 +5,7 @@ namespace Wallabag\ImportBundle\Consumer; | |||
5 | use OldSound\RabbitMqBundle\RabbitMq\ConsumerInterface; | 5 | use OldSound\RabbitMqBundle\RabbitMq\ConsumerInterface; |
6 | use PhpAmqpLib\Message\AMQPMessage; | 6 | use PhpAmqpLib\Message\AMQPMessage; |
7 | 7 | ||
8 | class AMPQEntryConsumer extends AbstractConsumer implements ConsumerInterface | 8 | class AMQPEntryConsumer extends AbstractConsumer implements ConsumerInterface |
9 | { | 9 | { |
10 | /** | 10 | /** |
11 | * {@inheritdoc} | 11 | * {@inheritdoc} |
diff --git a/src/Wallabag/ImportBundle/Resources/config/rabbit.yml b/src/Wallabag/ImportBundle/Resources/config/rabbit.yml index f09dda0d..aa049749 100644 --- a/src/Wallabag/ImportBundle/Resources/config/rabbit.yml +++ b/src/Wallabag/ImportBundle/Resources/config/rabbit.yml | |||
@@ -1,28 +1,28 @@ | |||
1 | # RabbitMQ stuff | 1 | # RabbitMQ stuff |
2 | services: | 2 | services: |
3 | wallabag_import.consumer.ampq.pocket: | 3 | wallabag_import.consumer.amqp.pocket: |
4 | class: Wallabag\ImportBundle\Consumer\AMPQEntryConsumer | 4 | class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer |
5 | arguments: | 5 | arguments: |
6 | - "@doctrine.orm.entity_manager" | 6 | - "@doctrine.orm.entity_manager" |
7 | - "@wallabag_user.user_repository" | 7 | - "@wallabag_user.user_repository" |
8 | - "@wallabag_import.pocket.import" | 8 | - "@wallabag_import.pocket.import" |
9 | - "@logger" | 9 | - "@logger" |
10 | wallabag_import.consumer.ampq.readability: | 10 | wallabag_import.consumer.amqp.readability: |
11 | class: Wallabag\ImportBundle\Consumer\AMPQEntryConsumer | 11 | class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer |
12 | arguments: | 12 | arguments: |
13 | - "@doctrine.orm.entity_manager" | 13 | - "@doctrine.orm.entity_manager" |
14 | - "@wallabag_user.user_repository" | 14 | - "@wallabag_user.user_repository" |
15 | - "@wallabag_import.readability.import" | 15 | - "@wallabag_import.readability.import" |
16 | - "@logger" | 16 | - "@logger" |
17 | wallabag_import.consumer.ampq.wallabag_v1: | 17 | wallabag_import.consumer.amqp.wallabag_v1: |
18 | class: Wallabag\ImportBundle\Consumer\AMPQEntryConsumer | 18 | class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer |
19 | arguments: | 19 | arguments: |
20 | - "@doctrine.orm.entity_manager" | 20 | - "@doctrine.orm.entity_manager" |
21 | - "@wallabag_user.user_repository" | 21 | - "@wallabag_user.user_repository" |
22 | - "@wallabag_import.wallabag_v1.import" | 22 | - "@wallabag_import.wallabag_v1.import" |
23 | - "@logger" | 23 | - "@logger" |
24 | wallabag_import.consumer.ampq.wallabag_v2: | 24 | wallabag_import.consumer.amqp.wallabag_v2: |
25 | class: Wallabag\ImportBundle\Consumer\AMPQEntryConsumer | 25 | class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer |
26 | arguments: | 26 | arguments: |
27 | - "@doctrine.orm.entity_manager" | 27 | - "@doctrine.orm.entity_manager" |
28 | - "@wallabag_user.user_repository" | 28 | - "@wallabag_user.user_repository" |