Passed
Branch beta (1b8e35)
by Jon
07:16
created

ElementsetUserRequest::messages()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
namespace App\Http\Requests\Frontend\Elementset;
4
5
use App\Http\Requests\Request;
6
7
class ElementsetUserRequest extends \Backpack\CRUD\app\Http\Requests\CrudRequest
8
{
9
    /**
10
     * Determine if the user is authorized to make this request.
11
     *
12
     * @return bool
13
     */
14
    public function authorize()
15
    {
16
        // only allow updates if the user is logged in
17
        return \Auth::check();
18
    }
19
20
    /**
21
     * Get the validation rules that apply to the request.
22
     *
23
     * @return array
24
     */
25
    public function rules()
26
    {
27
        return [
28
            // 'name' => 'required|min:5|max:255'
1 ignored issue
show
Unused Code Comprehensibility introduced by
50% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
29
        ];
30
    }
31
32
    /**
33
     * Get the validation attributes that apply to the request.
34
     *
35
     * @return array
36
     */
37
    public function attributes()
38
    {
39
        return [
40
            //
41
        ];
42
    }
43
44
    /**
45
     * Get the validation messages that apply to the request.
46
     *
47
     * @return array
48
     */
49
    public function messages()
50
    {
51
        return [
52
            //
53
        ];
54
    }
55
}
56