Skip to content

Commit

Permalink
style: format code with PHP CS Fixer
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in 97c477f according to the output
from PHP CS Fixer.

Details: #43
  • Loading branch information
deepsource-autofix[bot] authored Oct 7, 2023
1 parent 97c477f commit 61b668e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/Http/Controllers/Web/UserController.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ public function index()

$users = $query->paginate($per_page);

// $this->repository->pushCriteria(new Where('status', User::ST_ACTIVE));
// $this->repository->pushCriteria(new OrderBy('solved', 'desc'));
// $this->repository->pushCriteria(new OrderBy('submit', 'asc'));
//
// $users = $this->repository->paginate($per_page);
// $this->repository->pushCriteria(new Where('status', User::ST_ACTIVE));
// $this->repository->pushCriteria(new OrderBy('solved', 'desc'));
// $this->repository->pushCriteria(new OrderBy('submit', 'asc'));
//
// $users = $this->repository->paginate($per_page);

return view('web.user.index', ['users' => $users, 'offset' => $offset]);
}
Expand Down

0 comments on commit 61b668e

Please sign in to comment.