Skip to content

Commit 20e5604

Browse files
committed
Fix variable duplication
1 parent f32098d commit 20e5604

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Sentry/Laravel/Tracing/EventHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function subscribe(): void
5656
*/
5757
public function __call($method, $arguments)
5858
{
59-
$handlerMethod = $handlerMethod = "{$method}Handler";
59+
$handlerMethod = "{$method}Handler";
6060

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

0 commit comments

Comments
 (0)