Skip to content

Commit 93a0c69

Browse files
committed
fix factory definition of notifier transports
1 parent 1e5f5f8 commit 93a0c69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Resources/config/notifier.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
->alias(ChatterInterface::class, 'chatter')
7474

7575
->set('chatter.transports', Transports::class)
76-
->factory(['chatter.transport_factory', 'fromStrings'])
76+
->factory([service('chatter.transport_factory'), 'fromStrings'])
7777
->args([[]])
7878

7979
->set('chatter.transport_factory', Transport::class)
@@ -93,7 +93,7 @@
9393
->alias(TexterInterface::class, 'texter')
9494

9595
->set('texter.transports', Transports::class)
96-
->factory(['texter.transport_factory', 'fromStrings'])
96+
->factory([service('texter.transport_factory'), 'fromStrings'])
9797
->args([[]])
9898

9999
->set('texter.transport_factory', Transport::class)

0 commit comments

Comments
 (0)