Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Aug 21, 2024
1 parent 55ead90 commit 293d005
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Livewire/ListIssues.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 293d005

Please sign in to comment.