Completed
Push — master ( 395fb2...b0764c )
by he
10:48 queued 10s
created

ReportRequest::rules()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
eloc 5
c 1
b 0
f 1
nc 1
nop 0
dl 0
loc 7
rs 10
1
<?php
2
3
namespace App\Http\Requests\Judger;
4
5
class ReportRequest extends JudgerRequest
6
{
7
    public function getSolutionId()
8
    {
9
        return $this->input('solution_id');
10
    }
11
12
    public function rules()
13
    {
14
        return [
15
            'solution_id' => 'required|int',
16
            'status'      => 'required|int|between:2,12',
17
            'time_cost'   => 'int',
18
            'memory_cost' => 'int',
19
        ];
20
    }
21
}
22