File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ the generic ``app.lock`` service can be defined as follows:
297
297
public : false
298
298
app.lock :
299
299
tags :
300
- - { name: auto_alias, format: "app.%database_type%.lock " }
300
+ - { name: auto_alias, format: "app.%database_type%_lock " }
301
301
302
302
.. code-block :: xml
303
303
@@ -315,7 +315,7 @@ the generic ``app.lock`` service can be defined as follows:
315
315
class =" AppBundle\Lock\SqliteLock" />
316
316
317
317
<service id =" app.lock" >
318
- <tag name =" auto_alias" format =" app.%database_type%.lock " />
318
+ <tag name =" auto_alias" format =" app.%database_type%_lock " />
319
319
</service >
320
320
</services >
321
321
</container >
@@ -328,7 +328,7 @@ the generic ``app.lock`` service can be defined as follows:
328
328
->register('app.sqlite_lock', 'AppBundle\Lock\SqliteLock')->setPublic(false)
329
329
330
330
->register('app.lock')
331
- ->addTag('auto_alias', array('format' => 'app.%database_type%.lock '))
331
+ ->addTag('auto_alias', array('format' => 'app.%database_type%_lock '))
332
332
;
333
333
334
334
The ``format `` parameter defines the expression used to construct the name of
You can’t perform that action at this time.
0 commit comments