Skip to content

Commit

Permalink
Remove all *.class
Browse files Browse the repository at this point in the history
  • Loading branch information
nfabre committed Jan 3, 2018
1 parent a03737a commit e37da4a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
8 changes: 1 addition & 7 deletions src/Resources/config/parameters.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
parameters:
uecode_qpush.request_listener.class: Uecode\Bundle\QPushBundle\EventListener\RequestListener
uecode_qpush.registry.class: Uecode\Bundle\QPushBundle\Provider\ProviderRegistry
uecode_qpush.provider.aws: Uecode\Bundle\QPushBundle\Provider\AwsProvider
uecode_qpush.provider.ironmq: Uecode\Bundle\QPushBundle\Provider\IronMqProvider
uecode_qpush.provider.sync: Uecode\Bundle\QPushBundle\Provider\SyncProvider
uecode_qpush.provider.custom: Uecode\Bundle\QPushBundle\Provider\CustomProvider
uecode_qpush.provider.file: Uecode\Bundle\QPushBundle\Provider\FileProvider
uecode_qpush.build_command.class: Uecode\Bundle\QPushBundle\Command\QueueBuildCommand
uecode_qpush.destroy_command.class: Uecode\Bundle\QPushBundle\Command\QueueDestroyCommand
uecode_qpush.publish_command.class: Uecode\Bundle\QPushBundle\Command\QueuePublishCommand
uecode_qpush.receive_command.class: Uecode\Bundle\QPushBundle\Command\QueueReceiveCommand
uecode_qpush.provider.file: Uecode\Bundle\QPushBundle\Provider\FileProvider
12 changes: 6 additions & 6 deletions src/Resources/config/services.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
### QPush Registry
uecode_qpush.registry:
class: '%uecode_qpush.registry.class%'
class: Uecode\Bundle\QPushBundle\Provider\ProviderRegistry
uecode_qpush:
alias: uecode_qpush.registry

Expand All @@ -13,29 +13,29 @@ services:

### QPush Event Listeners
uecode_qpush.request_listener:
class: '%uecode_qpush.request_listener.class%'
class: Uecode\Bundle\QPushBundle\EventListener\RequestListener
arguments:
- '@event_dispatcher'
tags:
- { name: kernel.event_listener, event: kernel.request, priority: 254 }

### QPush Commands
uecode_qpush.build_command:
class: '%uecode_qpush.build_command.class%'
class: Uecode\Bundle\QPushBundle\Command\QueueBuildCommand
tags:
- { name: console.command }

uecode_qpush.destroy_command:
class: '%uecode_qpush.destroy_command.class%'
class: Uecode\Bundle\QPushBundle\Command\QueueDestroyCommand
tags:
- { name: console.command }

uecode_qpush.publish_command:
class: '%uecode_qpush.publish_command.class%'
class: Uecode\Bundle\QPushBundle\Command\QueuePublishCommand
tags:
- { name: console.command }

uecode_qpush.receive_command:
class: '%uecode_qpush.receive_command.class%'
class: Uecode\Bundle\QPushBundle\Command\QueueReceiveCommand
tags:
- { name: console.command }

0 comments on commit e37da4a

Please sign in to comment.