Skip to content

Commit

Permalink
Merge pull request #832 from CharbelJ/patch-3
Browse files Browse the repository at this point in the history
Update PendingJobsController.php
  • Loading branch information
themsaid committed Apr 22, 2020
2 parents b1fd864 + 41a5e59 commit ff0ee22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Http/Controllers/PendingJobsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function __construct(JobRepository $jobs)
}

/**
* Get all of the recent jobs.
* Get all of the pending jobs.
*
* @param \Illuminate\Http\Request $request
* @return array
Expand All @@ -43,7 +43,7 @@ public function index(Request $request)

return [
'jobs' => $jobs,
'total' => $this->jobs->countRecent(),
'total' => $this->jobs->countPending(),
];
}

Expand Down

0 comments on commit ff0ee22

Please sign in to comment.