Passed
Push — master ( cd2cd2...6fd81b )
by Tristan
25:03 queued 13:24
created

ClassificationCrudRequest::rules()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
namespace App\Http\Requests;
4
5
use Illuminate\Foundation\Http\FormRequest;
6
7
class ClassificationCrudRequest 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
            'key' => 'required|size:2|alpha|unique:classifications,key'
29
        ];
30
    }
31
32
    /**
33
     * Get the validation messages that apply to the request.
34
     *
35
     * @return string[]
36
     */
37
    public function messages() : array
38
    {
39
        return [
40
            'key.required' => 'Please enter a classification key.',
41
            'key.size' => 'The classification key must be 2 characters long.',
42
            'key.alpha' => 'The classification key may only use alphabetic characters.',
43
            'key.unique' => 'That classification key already exists.'
44
        ];
45
    }
46
}
47