Skip to content

Commit

Permalink
fixed #20
Browse files Browse the repository at this point in the history
  • Loading branch information
chaz6chez committed Feb 1, 2024
1 parent 769a8a9 commit 3effd27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Builders/QueueBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class $className extends QueueBuilder
* 'routing_key' => '',
* ]
*/
protected array \$queueConfigs = [
protected array \$queueConfig = [
// 队列名称 ,默认由类名自动生成
'name' => '$name',
// 是否延迟
Expand Down
2 changes: 1 addition & 1 deletion tests/Builders/TestBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class TestBuilder extends QueueBuilder
* 'routing_key' => '',
* ]
*/
protected array $queueConfigs = [
protected array $queueConfig = [
// 队列名称 ,默认由类名自动生成
'name' => 'process.workbunny.rabbitmq.TestBuilder',
// 是否延迟
Expand Down
2 changes: 1 addition & 1 deletion tests/Builders/TestBuilderDelayed.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class TestBuilderDelayed extends QueueBuilder
* 'routing_key' => '',
* ]
*/
protected array $queueConfigs = [
protected array $queueConfig = [
// 队列名称 ,默认由类名自动生成
'name' => 'process.workbunny.rabbitmq.TestBuilderDelayed',
// 是否延迟
Expand Down

0 comments on commit 3effd27

Please sign in to comment.