Passed
Push — feature/job-builder/job-detail... ( 58ee17...46caa1 )
by Xander
23:02 queued 12:47
created

DepartmentCrudRequest   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 36
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 3
eloc 8
c 2
b 0
f 0
dl 0
loc 36
ccs 0
cts 6
cp 0
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A authorize() 0 4 1
A rules() 0 5 1
A messages() 0 5 1
1
<?php
2
3
namespace App\Http\Requests;
4
5
use Illuminate\Foundation\Http\FormRequest;
6
7
class DepartmentCrudRequest extends FormRequest
8
{
9
    /**
10
     * Determine if the user is authorized to make this request.
11
     *
12
     * @return boolean
13
     */
14
    public function authorize() : bool
15
    {
16
        // Only allow updates if the user is a logged in Admin.
17
        return backpack_auth()->check();
18
    }
19
20
    /**
21
     * Get the validation rules that apply to the request.
22
     *
23
     * @return string[]
24
     */
25
    public function rules() : array
26
    {
27
        return [
28
            'name' => 'required',
29
            'impact' => 'required'
30
        ];
31
    }
32
33
    /**
34
     * Get the validation messages that apply to the request.
35
     *
36
     * @return string[]
37
     */
38
    public function messages() : array
39
    {
40
        return [
41
            'name.required' => 'Please enter a department name.',
42
            'impact.required' => 'Please enter an impact statement.'
43
        ];
44
    }
45
}
46