Completed
Push — master ( ecbc68...da2c5b )
by David Martínez
23:11
created

DesiratumUpdateRequest::rules()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 6
ccs 0
cts 5
cp 0
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
3
namespace Scool\Timetables\Http\Requests;
4
use Illuminate\Foundation\Http\FormRequest;
5
6
class DesiratumUpdateRequest extends FormRequest
7
{
8
    /**
9
     * Determine if the user is authorized to make this request.
10
     *
11
     * @return bool
12
     */
13
    public function authorize()
14
    {
15
        return true;
16
    }
17
18
    /**
19
     * Get the validation rules that apply to the request.
20
     *
21
     * @return array
22
     */
23
    public function rules()
24
    {
25
        return [
26
            //
27
        ];
28
    }
29
}
30