• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

visavi / rotor / 28340133337

28 Jun 2026 11:47PM UTC coverage: 16.561% (+0.09%) from 16.474%
28340133337

push

github

visavi
Ядро и модули переведены на datetime, удалена константа SITETIME

18 of 95 new or added lines in 31 files covered. (18.95%)

7 existing lines in 6 files now uncovered.

989 of 5972 relevant lines covered (16.56%)

2.44 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/app/Http/Controllers/Admin/BanlistController.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace App\Http\Controllers\Admin;
6

7
use App\Models\User;
8
use Illuminate\View\View;
9

10
class BanlistController extends AdminController
11
{
12
    /**
13
     * Главная страница
14
     */
15
    public function index(): View
×
16
    {
17
        $users = User::query()
×
18
            ->where('level', User::BANNED)
×
NEW
19
            ->where('timeban', '>', now())
×
20
            ->orderBy('timeban')
×
21
            ->with('lastBan')
×
22
            ->paginate(setting('reglist'));
×
23

24
        return view('admin/banlists/index', compact('users'));
×
25
    }
26
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc