Skip to content

Commit f32098d

Browse files
authored
Fix variable duplication (#413)
1 parent e2f302e commit f32098d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Sentry/Laravel/EventHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public function subscribeQueueEvents(QueueManager $queue)
173173
*/
174174
public function __call($method, $arguments)
175175
{
176-
$handlerMethod = $handlerMethod = "{$method}Handler";
176+
$handlerMethod = "{$method}Handler";
177177

178178
if (!method_exists($this, $handlerMethod)) {
179179
throw new RuntimeException("Missing event handler: {$handlerMethod}");

0 commit comments

Comments
 (0)