Skip to content

Commit 7293c67

Browse files
tanhongitgithub-actions[bot]
authored andcommitted
Fix styling
1 parent c4a5118 commit 7293c67

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Services/WebhookService.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ protected function isStatusCommentEnabled(array $payload): bool
8787
{
8888
$fieldType = $payload['changes']['field_value']['field_type'] ?? '';
8989

90-
return !((string) $fieldType === 'Status'
90+
return !(
91+
(string) $fieldType === 'Status'
9192
&& (bool) config('github-project.enable_status_comment') === false
9293
);
9394
}

0 commit comments

Comments
 (0)