Skip to content

Commit b47a41f

Browse files
nkondrashovnkondrashov
andauthored
Fixes from reanimation demo app (#196)
Co-authored-by: nkondrashov <nkondrashov@arti.ru>
1 parent 4ace666 commit b47a41f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

config/di.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@
5959
MessageSerializerInterface::class => JsonMessageSerializer::class,
6060
RunCommand::class => [
6161
'__construct()' => [
62-
'channels' => array_keys($params['yiisoft/yii-queue']['channel-definitions']),
62+
'channels' => array_keys($params['yiisoft/queue']['channel-definitions']),
6363
],
6464
],
6565
ListenAllCommand::class => [
6666
'__construct()' => [
67-
'channels' => array_keys($params['yiisoft/yii-queue']['channel-definitions']),
67+
'channels' => array_keys($params['yiisoft/queue']['channel-definitions']),
6868
],
6969
],
7070
];

src/Command/ListenAllCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Yiisoft\Yii\Queue\Command;
5+
namespace Yiisoft\Queue\Command;
66

77
use Symfony\Component\Console\Command\Command;
88
use Symfony\Component\Console\Input\InputArgument;

0 commit comments

Comments
 (0)