Skip to content

Commit

Permalink
Fixes from reanimation demo app
Browse files Browse the repository at this point in the history
  • Loading branch information
nkondrashov committed Feb 20, 2024
1 parent 4ace666 commit 44f93e8
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']),

Check warning on line 62 in config/di.php

View check run for this annotation

Codecov / codecov/patch

config/di.php#L62

Added line #L62 was not covered by tests
],
],
ListenAllCommand::class => [
'__construct()' => [
'channels' => array_keys($params['yiisoft/yii-queue']['channel-definitions']),
'channels' => array_keys($params['yiisoft/queue']['channel-definitions']),

Check warning on line 67 in config/di.php

View check run for this annotation

Codecov / codecov/patch

config/di.php#L67

Added line #L67 was not covered by tests
],
],
];
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 44f93e8

Please sign in to comment.