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

LeTraceurSnorkLibrary / MessSaga / 23788908627

31 Mar 2026 08:53AM UTC coverage: 0.549% (-18.1%) from 18.656%
23788908627

Pull #13

github

web-flow
Merge 03d4dba7f into b32c68b3f
Pull Request #13: infra: coverage only for unit-tests

4 of 729 relevant lines covered (0.55%)

0.01 hits per line

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

0.0
/app/Http/Requests/ProfileUpdateRequest.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace App\Http\Requests;
6

7
use App\Models\User;
8
use Illuminate\Foundation\Http\FormRequest;
9
use Illuminate\Validation\Rule;
10

11
class ProfileUpdateRequest extends FormRequest
12
{
13
    /**
14
     * Get the validation rules that apply to the request.
15
     *
16
     * @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
17
     */
18
    public function rules(): array
19
    {
20
        return [
×
21
            'name'  => ['required', 'string', 'max:255'],
×
22
            'email' => [
×
23
                'required',
×
24
                'string',
×
25
                'lowercase',
×
26
                'email',
×
27
                'max:255',
×
28
                Rule::unique(User::class)->ignore($this->user()->id),
×
29
            ],
×
30
        ];
×
31
    }
32
}
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