Use FQCN as service name for commands

This commit is contained in:
Yassine Guedidi 2022-04-24 17:20:27 +02:00
parent a7addd3c13
commit 9f7a076e41
2 changed files with 6 additions and 42 deletions

View File

@ -241,38 +241,6 @@ services:
- "%wallabag_core.site_credentials.encryption_key_path%" - "%wallabag_core.site_credentials.encryption_key_path%"
- "@logger" - "@logger"
wallabag_core.command.clean_downloaded_images: Wallabag\CoreBundle\Command\:
class: Wallabag\CoreBundle\Command\CleanDownloadedImagesCommand resource: ../../Command/*
tags: ['console.command'] autoconfigure: true
wallabag_core.command.clean_duplicates:
class: Wallabag\CoreBundle\Command\CleanDuplicatesCommand
tags: ['console.command']
wallabag_core.command.export:
class: Wallabag\CoreBundle\Command\ExportCommand
tags: ['console.command']
wallabag_core.command.generate_url_hashes:
class: Wallabag\CoreBundle\Command\GenerateUrlHashesCommand
tags: ['console.command']
wallabag_core.command.install:
class: Wallabag\CoreBundle\Command\InstallCommand
tags: ['console.command']
wallabag_core.command.list_user:
class: Wallabag\CoreBundle\Command\ListUserCommand
tags: ['console.command']
wallabag_core.command.reload_entry:
class: Wallabag\CoreBundle\Command\ReloadEntryCommand
tags: ['console.command']
wallabag_core.command.show_user:
class: Wallabag\CoreBundle\Command\ShowUserCommand
tags: ['console.command']
wallabag_core.command.tag_all:
class: Wallabag\CoreBundle\Command\TagAllCommand
tags: ['console.command']

View File

@ -132,10 +132,6 @@ services:
tags: tags:
- { name: wallabag_import.import, alias: chrome } - { name: wallabag_import.import, alias: chrome }
wallabag_import.command.import: Wallabag\ImportBundle\Command\:
class: Wallabag\ImportBundle\Command\ImportCommand resource: ../../Command/*
tags: ['console.command'] autoconfigure: true
wallabag_import.command.redis_worker:
class: Wallabag\ImportBundle\Command\RedisWorkerCommand
tags: ['console.command']