Skip to content

Commit

Permalink
Merge pull request #106 from francoispluchino/fix-deprecated-scalar
Browse files Browse the repository at this point in the history
Fix deprecated scalar starting with the "%" indicator character
  • Loading branch information
k-k authored Jul 9, 2016
2 parents 2f0d82f + dcad2ad commit e9877c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Resources/config/services.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
services:
### QPush Registry
uecode_qpush.registry:
class: %uecode_qpush.registry.class%
class: '%uecode_qpush.registry.class%'
uecode_qpush:
alias: uecode_qpush.registry

### QPush Default File Cache
uecode_qpush.file_cache:
class: Doctrine\Common\Cache\PhpFileCache
arguments: [%kernel.cache_dir%/qpush, qpush.php]
arguments: ['%kernel.cache_dir%/qpush', qpush.php]
public: false

### QPush Event Listeners
uecode_qpush.request_listener:
class: %uecode_qpush.request_listener.class%
class: '%uecode_qpush.request_listener.class%'
arguments:
- '@event_dispatcher'
tags:
Expand Down

0 comments on commit e9877c4

Please sign in to comment.