We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73c23c5 commit 9a1d8e2Copy full SHA for 9a1d8e2
src/PubSubQueue.php
@@ -72,8 +72,8 @@ public function size($subscriber = null)
72
*/
73
public function checkHandler($subscriber)
74
{
75
- if (array_key_exists('plain_handlers', $this->config)) {
76
- return array_key_exists($subscriber, $this->config['plain_handlers']);
+ if (array_key_exists('plainHandlers', $this->config)) {
+ return array_key_exists($subscriber, $this->config['plainHandlers']);
77
}
78
return false;
79
@@ -87,7 +87,7 @@ public function checkHandler($subscriber)
87
88
public function getHandler($subscriber)
89
90
- return $this->config['plain_handlers'][$subscriber];
+ return $this->config['plainHandlers'][$subscriber];
91
92
93
/**
0 commit comments