From b6b067c969f7e4a0aece8d1dfc0f0c64a1b3710c Mon Sep 17 00:00:00 2001 From: Yassine Guedidi Date: Sun, 31 Dec 2023 09:50:36 +0100 Subject: [PATCH] Move Import commands to Core --- app/config/services.yml | 2 +- .../Command => CoreBundle/Command/Import}/ImportCommand.php | 2 +- .../Command/Import}/RedisWorkerCommand.php | 2 +- .../Command => CoreBundle/Command/Import}/ImportCommandTest.php | 2 +- .../Command/Import}/RedisWorkerCommandTest.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) rename src/Wallabag/{ImportBundle/Command => CoreBundle/Command/Import}/ImportCommand.php (99%) rename src/Wallabag/{ImportBundle/Command => CoreBundle/Command/Import}/RedisWorkerCommand.php (97%) rename tests/Wallabag/{ImportBundle/Command => CoreBundle/Command/Import}/ImportCommandTest.php (98%) rename tests/Wallabag/{ImportBundle/Command => CoreBundle/Command/Import}/RedisWorkerCommandTest.php (97%) diff --git a/app/config/services.yml b/app/config/services.yml index 103e2c024..8d01f536b 100644 --- a/app/config/services.yml +++ b/app/config/services.yml @@ -299,7 +299,7 @@ services: tags: - { name: console.command, command: 'wallabag:tag:all' } - Wallabag\ImportBundle\Command\ImportCommand: + Wallabag\CoreBundle\Command\Import\ImportCommand: tags: - { name: console.command, command: 'wallabag:import' } diff --git a/src/Wallabag/ImportBundle/Command/ImportCommand.php b/src/Wallabag/CoreBundle/Command/Import/ImportCommand.php similarity index 99% rename from src/Wallabag/ImportBundle/Command/ImportCommand.php rename to src/Wallabag/CoreBundle/Command/Import/ImportCommand.php index 03b15a21b..78cead733 100644 --- a/src/Wallabag/ImportBundle/Command/ImportCommand.php +++ b/src/Wallabag/CoreBundle/Command/Import/ImportCommand.php @@ -1,6 +1,6 @@