Skip to content

Commit 035e724

Browse files
authored
Remove unsused var (#274)
1 parent 750fc5c commit 035e724

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Subscriber/BugLabelNewIssueSubscriber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function onIssues(GitHubEvent $event): void
2222
{
2323
$data = $event->getData();
2424
$repository = $event->getRepository();
25-
if ('labeled' !== $action = $data['action']) {
25+
if ('labeled' !== $data['action']) {
2626
return;
2727
}
2828

0 commit comments

Comments
 (0)