Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tobytwigger authored and github-actions[bot] committed Aug 19, 2022
1 parent d8e61eb commit 891b743
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/JobStatusCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@

class JobStatusCollection extends Collection
{

public function countFinished()
{
return $this->filter(fn(JobStatus $jobStatus) => $jobStatus->isFinished())->count();
return $this->filter(fn (JobStatus $jobStatus) => $jobStatus->isFinished())->count();
}

public function countSuccessful()
Expand Down

0 comments on commit 891b743

Please sign in to comment.