Skip to content

Commit

Permalink
Fixes from reanimation demo app (#196)
Browse files Browse the repository at this point in the history
Co-authored-by: nkondrashov <[email protected]>
  • Loading branch information
nkondrashov and nkondrashov authored Feb 21, 2024
1 parent 4ace666 commit b47a41f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config/di.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@
MessageSerializerInterface::class => JsonMessageSerializer::class,
RunCommand::class => [
'__construct()' => [
'channels' => array_keys($params['yiisoft/yii-queue']['channel-definitions']),
'channels' => array_keys($params['yiisoft/queue']['channel-definitions']),
],
],
ListenAllCommand::class => [
'__construct()' => [
'channels' => array_keys($params['yiisoft/yii-queue']['channel-definitions']),
'channels' => array_keys($params['yiisoft/queue']['channel-definitions']),
],
],
];
2 changes: 1 addition & 1 deletion src/Command/ListenAllCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

namespace Yiisoft\Yii\Queue\Command;
namespace Yiisoft\Queue\Command;

use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
Expand Down

0 comments on commit b47a41f

Please sign in to comment.