diff --git a/app/Livewire/ListIssues.php b/app/Livewire/ListIssues.php index 65e1f31..d6cc235 100644 --- a/app/Livewire/ListIssues.php +++ b/app/Livewire/ListIssues.php @@ -192,13 +192,13 @@ private function initialiseLabels(): void * Loop through each of the labels on the issue and increment the count * for each label that we're tracking in Find A PR. * - * @param Issue $issue + * @param Issue $issue * @return void */ private function incrementLabelCounts(Issue $issue): void { foreach ($issue->labels as $label) { - if (!$this->isValidLabel($label)) { + if (! $this->isValidLabel($label)) { continue; }