Passed
Push — task/skillcategory-admin ( e35471 )
by
unknown
05:33
created

SkillCategoryCrudRequest::rules()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
c 1
b 0
f 0
dl 0
loc 6
rs 10
cc 3
nc 4
nop 0
1
<?php
2
3
namespace App\Http\Requests;
4
5
use Illuminate\Foundation\Http\FormRequest;
6
7
class SkillCategoryCrudRequest 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();
0 ignored issues
show
Bug introduced by
The function backpack_auth was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

17
        return /** @scrutinizer ignore-call */ backpack_auth()->check();
Loading history...
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|alpha_dash|unique:skill_categories,key' . (isset($this->id) ? ",{$this->id}" : ''),
29
            'name' => 'required',
30
            'parent_category_id' => 'required' . (isset($this->id) ? "|not_in:{$this->id}" : ''),
31
        ];
32
    }
33
34
    /**
35
     * Get the validation messages that apply to the request.
36
     *
37
     * @return string[]
38
     */
39
    public function messages() : array
40
    {
41
        return [
42
            'key.required' => 'Please enter a skill name.',
43
            'key.unique' => 'A skill category with this name already exists.',
44
            'key.alpha_dash' => 'The skill category key may only use alphabetic characters and dashes.'
45
        ];
46
    }
47
}
48