Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
25 | public function asQueueInfo() |
||
26 | { |
||
27 | return [ |
||
28 | 'problem_id' => $this->problem->id, |
||
29 | 'time_limit' => $this->problem->time_limit, |
||
30 | 'memory_limit' => $this->problem->memory_limit, |
||
31 | 'is_special' => $this->problem->spj, |
||
32 | |||
33 | 'solution_id' => $this->solution->id, |
||
34 | 'code' => $this->solution->source->code, |
||
35 | 'language' => $this->solution->language, |
||
36 | ]; |
||
39 |