Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

UserProfileRequest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 18
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A rules() 0 10 1
1
<?php
2
3
namespace DoeSangue\Http\Requests;
4
5
class UserProfileRequest extends Request
6
{
7
    /**
8
     * Get the validation rules that apply to the request.
9
     *
10
     * @return array
11
     */
12
    public function rules()
13
    {
14
        return [
15
            'name' => 'required',
16
            'username' => 'required',
17
            'email' => 'required',
18
            'password' => 'required',
19
            'phone' => 'required|min:12',
20
        ];
21
    }
22
}
23